Searched refs:pk_type (Results 1 – 6 of 6) sorted by relevance
/third_party/mbedtls/library/ |
D | pkwrite.c | 230 mbedtls_pk_type_t pk_type; in mbedtls_pk_write_pubkey_der() local 256 pk_type = mbedtls_pk_get_type( key ); in mbedtls_pk_write_pubkey_der() 258 if( pk_type == MBEDTLS_PK_ECKEY ) in mbedtls_pk_write_pubkey_der() 264 if( pk_type == MBEDTLS_PK_OPAQUE ) in mbedtls_pk_write_pubkey_der() 293 pk_type = MBEDTLS_PK_ECKEY; in mbedtls_pk_write_pubkey_der() 297 if( ( ret = mbedtls_oid_get_oid_by_pk_alg( pk_type, &oid, in mbedtls_pk_write_pubkey_der()
|
D | pk.c | 109 const mbedtls_pk_info_t * mbedtls_pk_info_from_type( mbedtls_pk_type_t pk_type ) in mbedtls_pk_info_from_type() argument 111 switch( pk_type ) { in mbedtls_pk_info_from_type()
|
D | x509_crt.c | 3114 mbedtls_pk_type_t pk_type; in x509_crt_verify_restartable_ca_cb() local 3133 pk_type = mbedtls_pk_get_type( &crt->pk ); in x509_crt_verify_restartable_ca_cb() 3135 if( x509_profile_check_pk_alg( profile, pk_type ) != 0 ) in x509_crt_verify_restartable_ca_cb()
|
/third_party/mbedtls/tests/suites/ |
D | test_suite_pk.function | 431 data_t * result_str, int pk_type, 478 TEST_ASSERT( mbedtls_pk_verify_ext( pk_type, options, &pk, 517 void pk_sign_verify_restart( int pk_type, int grp_id, char *d_str, 536 TEST_ASSERT( mbedtls_pk_setup( &prv, mbedtls_pk_info_from_type( pk_type ) ) == 0 ); 540 TEST_ASSERT( mbedtls_pk_setup( &pub, mbedtls_pk_info_from_type( pk_type ) ) == 0 );
|
/third_party/mbedtls/include/mbedtls/ |
D | pk.h | 266 const mbedtls_pk_info_t *mbedtls_pk_info_from_type( mbedtls_pk_type_t pk_type );
|
/third_party/googletest/docs/ |
D | gmock_cook_book.md | 3489 template <typename p1_type, ..., typename pk_type> 3490 FooMatcherPk<p1_type, ..., pk_type> 3491 Foo(p1_type p1, ..., pk_type pk) { ... } 3502 `FooMatcherPk<p1_type, ..., pk_type>`. This can be useful when composing
|