Home
last modified time | relevance | path

Searched refs:mbedtls_asn1_get_int (Results 1 – 12 of 12) sorted by relevance

/third_party/mbedtls/library/
Dpkcs5.c81 if( ( ret = mbedtls_asn1_get_int( &p, end, iterations ) ) != 0 ) in pkcs5_parse_pbkdf2_params()
87 if( ( ret = mbedtls_asn1_get_int( &p, end, keylen ) ) != 0 ) in pkcs5_parse_pbkdf2_params()
Dpkparse.c250 if( ( ret = mbedtls_asn1_get_int( &p, end, &ver ) ) != 0 ) in pk_group_from_specified()
743 if( ( ret = mbedtls_asn1_get_int( &p, end, &version ) ) != 0 ) in pk_parse_key_pkcs1_der()
892 if( ( ret = mbedtls_asn1_get_int( &p, end, &version ) ) != 0 ) in pk_parse_key_sec1_der()
1042 if( ( ret = mbedtls_asn1_get_int( &p, end, &version ) ) != 0 ) in pk_parse_key_pkcs8_unencrypted_der()
Dx509_csr.c68 if( ( ret = mbedtls_asn1_get_int( p, end, ver ) ) != 0 ) in x509_csr_get_version()
Dx509.c293 if( ( ret = mbedtls_asn1_get_int( &p, end2, salt_len ) ) != 0 ) in mbedtls_x509_get_rsassa_pss_params()
316 if( ( ret = mbedtls_asn1_get_int( &p, end2, &trailer_field ) ) != 0 ) in mbedtls_x509_get_rsassa_pss_params()
Dpkcs12.c68 if( ( ret = mbedtls_asn1_get_int( p, end, iterations ) ) != 0 ) in pkcs12_parse_pbe_params()
Dasn1parse.c181 int mbedtls_asn1_get_int( unsigned char **p, in mbedtls_asn1_get_int() function
Dx509_crl.c74 if( ( ret = mbedtls_asn1_get_int( p, end, ver ) ) != 0 ) in x509_crl_get_version()
Dx509_crt.c426 if( ( ret = mbedtls_asn1_get_int( p, end, ver ) ) != 0 ) in x509_get_version()
523 ret = mbedtls_asn1_get_int( p, end, ca_istrue ); in x509_get_basic_constraints()
535 if( ( ret = mbedtls_asn1_get_int( p, end, max_pathlen ) ) != 0 ) in x509_get_basic_constraints()
/third_party/mbedtls/include/mbedtls/
Dasn1.h299 int mbedtls_asn1_get_int( unsigned char **p,
/third_party/mbedtls/tests/suites/
Dtest_suite_asn1parse.function73 * call mbedtls_asn1_get_int(). */
78 ret = mbedtls_asn1_get_int( &q, end, &val );
346 TEST_EQUAL( mbedtls_asn1_get_int( &p, input->x + input->len, &val ),
411 ret = mbedtls_asn1_get_int( &p, input->x + input->len, &val );
Dtest_suite_x509parse.data1033 # tbsCertificate.version = 0x01000000000000000000000000000000 rejected by mbedtls_asn1_get_int
/third_party/mbedtls/
DChangeLog1321 * Fix mbedtls_asn1_get_int to support any number of leading zeros. Credit
2806 mbedtls_asn1_get_int(). Found and fixed by Guido Vranken. #599