Searched refs:mbedtls_asn1_get_int (Results 1 – 12 of 12) sorted by relevance
/third_party/mbedtls/library/ |
D | pkcs5.c | 81 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()
|
D | pkparse.c | 250 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()
|
D | x509_csr.c | 68 if( ( ret = mbedtls_asn1_get_int( p, end, ver ) ) != 0 ) in x509_csr_get_version()
|
D | x509.c | 293 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()
|
D | pkcs12.c | 68 if( ( ret = mbedtls_asn1_get_int( p, end, iterations ) ) != 0 ) in pkcs12_parse_pbe_params()
|
D | asn1parse.c | 181 int mbedtls_asn1_get_int( unsigned char **p, in mbedtls_asn1_get_int() function
|
D | x509_crl.c | 74 if( ( ret = mbedtls_asn1_get_int( p, end, ver ) ) != 0 ) in x509_crl_get_version()
|
D | x509_crt.c | 426 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/ |
D | asn1.h | 299 int mbedtls_asn1_get_int( unsigned char **p,
|
/third_party/mbedtls/tests/suites/ |
D | test_suite_asn1parse.function | 73 * 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 );
|
D | test_suite_x509parse.data | 1033 # tbsCertificate.version = 0x01000000000000000000000000000000 rejected by mbedtls_asn1_get_int
|
/third_party/mbedtls/ |
D | ChangeLog | 1321 * 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
|