Home
last modified time | relevance | path

Searched refs:MBEDTLS_ASN1_OID (Results 1 – 13 of 13) sorted by relevance

/optee_os/lib/libmbedtls/mbedtls/library/
H A Dx509_csr.c88 MBEDTLS_ASN1_OID)) != 0) { in x509_csr_parse_extensions()
92 extn_oid.tag = MBEDTLS_ASN1_OID; in x509_csr_parse_extensions()
220 MBEDTLS_ASN1_OID)) != 0) { in x509_csr_parse_attributes()
224 attr_oid.tag = MBEDTLS_ASN1_OID; in x509_csr_parse_attributes()
H A Dpkcs7.c99 ret = mbedtls_asn1_get_tag(p, *seq_end, &len, MBEDTLS_ASN1_OID); in pkcs7_get_content_info_type()
105 pkcs7->tag = MBEDTLS_ASN1_OID; in pkcs7_get_content_info_type()
588 if ((ret = mbedtls_asn1_get_tag(&p, end, &len, MBEDTLS_ASN1_OID)) != 0) { in mbedtls_pkcs7_parse_der()
H A Dx509.c204 if ((ret = mbedtls_asn1_get_tag(&p, end, &md_oid.len, MBEDTLS_ASN1_OID)) != 0) { in x509_get_hash_alg()
430 if ((ret = mbedtls_asn1_get_tag(p, end, &oid->len, MBEDTLS_ASN1_OID)) != 0) { in x509_get_attr_type_value()
1145 MBEDTLS_ASN1_OID)) != 0) { in x509_get_other_name()
1149 cur_oid.tag = MBEDTLS_ASN1_OID; in x509_get_other_name()
1183 if ((ret = mbedtls_asn1_get_tag(&p, end, &len, MBEDTLS_ASN1_OID)) != 0) { in x509_get_other_name()
1187 other_name->value.hardware_module_name.oid.tag = MBEDTLS_ASN1_OID; in x509_get_other_name()
H A Dx509write_crt.c349 if (ext->buf.tag != MBEDTLS_ASN1_OID) { in mbedtls_x509write_crt_set_ext_key_usage()
354 MBEDTLS_ASN1_CHK_ADD(len, mbedtls_asn1_write_tag(&c, buf, MBEDTLS_ASN1_OID)); in mbedtls_x509write_crt_set_ext_key_usage()
H A Dpkparse.c148 if ((ret = mbedtls_asn1_get_tag(&p, end_field, &len, MBEDTLS_ASN1_OID)) != 0) { in pk_group_from_specified()
360 if (params->tag != MBEDTLS_ASN1_OID && in pk_get_ecparams()
394 if (params->tag == MBEDTLS_ASN1_OID) { in pk_use_ecparams()
H A Dasn1parse.c370 if ((ret = mbedtls_asn1_get_tag(p, end, &alg->len, MBEDTLS_ASN1_OID)) != 0) { in mbedtls_asn1_get_alg()
H A Dasn1write.c157 return mbedtls_asn1_write_len_and_tag(p, start, len, MBEDTLS_ASN1_OID); in mbedtls_asn1_write_oid()
H A Dx509_crt.c569 if ((ret = mbedtls_asn1_get_sequence_of(p, end, ext_key_usage, MBEDTLS_ASN1_OID)) != 0) { in x509_get_ext_key_usage()
783 MBEDTLS_ASN1_OID)) != 0) { in x509_get_certificate_policies()
787 policy_oid.tag = MBEDTLS_ASN1_OID; in x509_get_certificate_policies()
901 MBEDTLS_ASN1_OID)) != 0) { in x509_get_crt_ext()
905 extn_oid.tag = MBEDTLS_ASN1_OID; in x509_get_crt_ext()
H A Dx509_create.c533 MBEDTLS_ASN1_CHK_ADD(len, mbedtls_asn1_write_tag(p, start, MBEDTLS_ASN1_OID)); in x509_write_extension()
H A Dx509_crl.c117 MBEDTLS_ASN1_OID)) != 0) { in x509_get_crl_ext()
H A Doid.c1155 oid->tag = MBEDTLS_ASN1_OID; in mbedtls_oid_from_numeric_string()
H A Drsa.c2411 *p++ = MBEDTLS_ASN1_OID; in rsa_rsassa_pkcs1_v15_encode()
/optee_os/lib/libmbedtls/mbedtls/include/mbedtls/
H A Dasn1.h69 #define MBEDTLS_ASN1_OID 0x06 macro