Home
last modified time | relevance | path

Searched refs:asn1_string (Results 1 – 25 of 285) sorted by relevance

12345678910>>...12

/aosp_15_r20/external/rust/crates/quiche/deps/boringssl/src/crypto/x509/
Dasn1_gen.c513 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 …]
Dt_req.c174 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/
Dasn1_gen.c513 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 …]
Dt_req.c174 ASN1_BIT_STRING *bs = at->value.asn1_string; in X509_REQ_print_ex()
/aosp_15_r20/external/boringssl/src/crypto/asn1/
H A Da_type.c76 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 Dasn1_test.cc104 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 Da_type.c76 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 Dasn1_test.cc104 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 Dattestation_record.cpp277 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 Dattestation_record.cpp215 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 Dattestation_record.cpp259 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/
Da_type.c158 result = ASN1_STRING_cmp(a->value.asn1_string, b->value.asn1_string); in ASN1_TYPE_cmp()
Dasn1_test.cc70 EXPECT_EQ(Bytes(&kZero, 1), Bytes(obj->value.asn1_string->data, in TEST()
71 obj->value.asn1_string->length)); in TEST()
Da_strex.c320 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/
Da_type.c158 result = ASN1_STRING_cmp(a->value.asn1_string, b->value.asn1_string); in ASN1_TYPE_cmp()
Dasn1_test.cc70 EXPECT_EQ(Bytes(&kZero, 1), Bytes(obj->value.asn1_string->data, in TEST()
71 obj->value.asn1_string->length)); in TEST()
Da_strex.c320 t.value.asn1_string = (ASN1_STRING *)str; in do_dump()
/aosp_15_r20/hardware/interfaces/keymaster/4.1/support/
H A Dattestation_record.cpp274 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 Dt_req.c176 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 Dt_req.c176 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/
Dasn1.h589 ASN1_STRING *asn1_string; member
/aosp_15_r20/prebuilts/vndk/v32/x86/include/external/boringssl/src/include/openssl/
Dasn1.h589 ASN1_STRING *asn1_string; member
/aosp_15_r20/prebuilts/vndk/v32/arm/include/external/boringssl/src/include/openssl/
Dasn1.h589 ASN1_STRING *asn1_string; member
/aosp_15_r20/prebuilts/vndk/v31/x86/include/external/boringssl/src/include/openssl/
Dasn1.h589 ASN1_STRING *asn1_string; member
/aosp_15_r20/external/rust/crates/quiche/deps/boringssl/src/include/openssl/
Dasn1.h695 ASN1_STRING *asn1_string; member

12345678910>>...12