/aosp_15_r20/external/rust/crates/quiche/deps/boringssl/src/crypto/x509/ |
D | asn1_gen.c | 513 if (!(ret->value.asn1_string = ASN1_STRING_type_new(utype))) in asn1_multi() 518 ret->value.asn1_string->data = der; in asn1_multi() 519 ret->value.asn1_string->length = derlen; in asn1_multi() 719 if (!(atmp->value.asn1_string = ASN1_STRING_new())) { in asn1_str2type() 723 if (!ASN1_STRING_set(atmp->value.asn1_string, str, -1)) { in asn1_str2type() 727 atmp->value.asn1_string->type = utype; in asn1_str2type() 728 if (!ASN1_TIME_check(atmp->value.asn1_string)) { in asn1_str2type() 754 if (ASN1_mbstring_copy(&atmp->value.asn1_string, (unsigned char *)str, in asn1_str2type() 766 if (!(atmp->value.asn1_string = ASN1_STRING_new())) { in asn1_str2type() 778 atmp->value.asn1_string->data = rdata; in asn1_str2type() [all …]
|
D | t_req.c | 174 ASN1_BIT_STRING *bs = at->value.asn1_string; in X509_REQ_print_ex()
|
/aosp_15_r20/external/rust/android-crates-io/crates/quiche/deps/boringssl/src/crypto/x509/ |
D | asn1_gen.c | 513 if (!(ret->value.asn1_string = ASN1_STRING_type_new(utype))) in asn1_multi() 518 ret->value.asn1_string->data = der; in asn1_multi() 519 ret->value.asn1_string->length = derlen; in asn1_multi() 719 if (!(atmp->value.asn1_string = ASN1_STRING_new())) { in asn1_str2type() 723 if (!ASN1_STRING_set(atmp->value.asn1_string, str, -1)) { in asn1_str2type() 727 atmp->value.asn1_string->type = utype; in asn1_str2type() 728 if (!ASN1_TIME_check(atmp->value.asn1_string)) { in asn1_str2type() 754 if (ASN1_mbstring_copy(&atmp->value.asn1_string, (unsigned char *)str, in asn1_str2type() 766 if (!(atmp->value.asn1_string = ASN1_STRING_new())) { in asn1_str2type() 778 atmp->value.asn1_string->data = rdata; in asn1_str2type() [all …]
|
D | t_req.c | 174 ASN1_BIT_STRING *bs = at->value.asn1_string; in X509_REQ_print_ex()
|
/aosp_15_r20/external/boringssl/src/crypto/asn1/ |
H A D | a_type.c | 76 return a->value.asn1_string != NULL ? a->type : 0; in ASN1_TYPE_get() 89 return a->value.asn1_string; in asn1_type_value_as_pointer() 123 ASN1_STRING_free(a->value.asn1_string); in asn1_type_cleanup() 124 a->value.asn1_string = NULL; in asn1_type_cleanup() 143 a->value.asn1_string = value; in ASN1_TYPE_set() 209 result = ASN1_STRING_cmp(a->value.asn1_string, b->value.asn1_string); in ASN1_TYPE_cmp()
|
H A D | asn1_test.cc | 104 EXPECT_EQ(Bytes(kTag128), Bytes(obj->value.asn1_string->data, in TEST() 105 obj->value.asn1_string->length)); in TEST() 118 obj->value.asn1_string = ASN1_STRING_type_new(128); in TEST() 119 ASSERT_TRUE(obj->value.asn1_string); in TEST() 121 ASSERT_TRUE(ASN1_STRING_set(obj->value.asn1_string, &zero, sizeof(zero))); in TEST()
|
/aosp_15_r20/external/cronet/third_party/boringssl/src/crypto/asn1/ |
H A D | a_type.c | 76 return a->value.asn1_string != NULL ? a->type : 0; in ASN1_TYPE_get() 89 return a->value.asn1_string; in asn1_type_value_as_pointer() 123 ASN1_STRING_free(a->value.asn1_string); in asn1_type_cleanup() 124 a->value.asn1_string = NULL; in asn1_type_cleanup() 143 a->value.asn1_string = value; in ASN1_TYPE_set() 209 result = ASN1_STRING_cmp(a->value.asn1_string, b->value.asn1_string); in ASN1_TYPE_cmp()
|
H A D | asn1_test.cc | 104 EXPECT_EQ(Bytes(kTag128), Bytes(obj->value.asn1_string->data, in TEST() 105 obj->value.asn1_string->length)); in TEST() 118 obj->value.asn1_string = ASN1_STRING_type_new(128); in TEST() 119 ASSERT_TRUE(obj->value.asn1_string); in TEST() 121 ASSERT_TRUE(ASN1_STRING_set(obj->value.asn1_string, &zero, sizeof(zero))); in TEST()
|
/aosp_15_r20/hardware/interfaces/security/keymint/support/ |
H A D | attestation_record.cpp | 277 void copyAuthTag(const ASN1_OCTET_STRING* asn1_string, TypedTag<TagType::BYTES, tag> ttag, in copyAuthTag() argument 279 if (!asn1_string) return; in copyAuthTag() 280 vector<uint8_t> buf(asn1_string->data, asn1_string->data + asn1_string->length); in copyAuthTag()
|
/aosp_15_r20/hardware/interfaces/keymaster/3.0/vts/functional/ |
H A D | attestation_record.cpp | 215 void copyAuthTag(const ASN1_OCTET_STRING* asn1_string, TypedTag<TagType::BYTES, tag> ttag, in copyAuthTag() argument 217 if (!asn1_string) return; in copyAuthTag() 219 buf.setToExternal(asn1_string->data, asn1_string->length); in copyAuthTag()
|
/aosp_15_r20/hardware/interfaces/keymaster/4.0/support/ |
H A D | attestation_record.cpp | 259 void copyAuthTag(const ASN1_OCTET_STRING* asn1_string, TypedTag<TagType::BYTES, tag> ttag, in copyAuthTag() argument 261 if (!asn1_string) return; in copyAuthTag() 263 buf.setToExternal(asn1_string->data, asn1_string->length); in copyAuthTag()
|
/aosp_15_r20/external/rust/crates/quiche/deps/boringssl/src/crypto/asn1/ |
D | a_type.c | 158 result = ASN1_STRING_cmp(a->value.asn1_string, b->value.asn1_string); in ASN1_TYPE_cmp()
|
D | asn1_test.cc | 70 EXPECT_EQ(Bytes(&kZero, 1), Bytes(obj->value.asn1_string->data, in TEST() 71 obj->value.asn1_string->length)); in TEST()
|
D | a_strex.c | 320 t.value.asn1_string = (ASN1_STRING *)str; in do_dump()
|
/aosp_15_r20/external/rust/android-crates-io/crates/quiche/deps/boringssl/src/crypto/asn1/ |
D | a_type.c | 158 result = ASN1_STRING_cmp(a->value.asn1_string, b->value.asn1_string); in ASN1_TYPE_cmp()
|
D | asn1_test.cc | 70 EXPECT_EQ(Bytes(&kZero, 1), Bytes(obj->value.asn1_string->data, in TEST() 71 obj->value.asn1_string->length)); in TEST()
|
D | a_strex.c | 320 t.value.asn1_string = (ASN1_STRING *)str; in do_dump()
|
/aosp_15_r20/hardware/interfaces/keymaster/4.1/support/ |
H A D | attestation_record.cpp | 274 void copyAuthTag(const ASN1_OCTET_STRING* asn1_string, TypedTag<TagType::BYTES, tag> ttag, in copyAuthTag() argument 276 if (!asn1_string) return; in copyAuthTag() 278 buf.setToExternal(asn1_string->data, asn1_string->length); in copyAuthTag()
|
/aosp_15_r20/external/boringssl/src/crypto/x509/ |
H A D | t_req.c | 176 ASN1_BIT_STRING *bs = at->value.asn1_string; in X509_REQ_print_ex()
|
/aosp_15_r20/external/cronet/third_party/boringssl/src/crypto/x509/ |
H A D | t_req.c | 176 ASN1_BIT_STRING *bs = at->value.asn1_string; in X509_REQ_print_ex()
|
/aosp_15_r20/prebuilts/vndk/v31/x86_64/include/external/boringssl/src/include/openssl/ |
D | asn1.h | 589 ASN1_STRING *asn1_string; member
|
/aosp_15_r20/prebuilts/vndk/v32/x86/include/external/boringssl/src/include/openssl/ |
D | asn1.h | 589 ASN1_STRING *asn1_string; member
|
/aosp_15_r20/prebuilts/vndk/v32/arm/include/external/boringssl/src/include/openssl/ |
D | asn1.h | 589 ASN1_STRING *asn1_string; member
|
/aosp_15_r20/prebuilts/vndk/v31/x86/include/external/boringssl/src/include/openssl/ |
D | asn1.h | 589 ASN1_STRING *asn1_string; member
|
/aosp_15_r20/external/rust/crates/quiche/deps/boringssl/src/include/openssl/ |
D | asn1.h | 695 ASN1_STRING *asn1_string; member
|