/third_party/mbedtls/tests/suites/ |
D | test_suite_gcm.function | 166 void gcm_bad_parameters( int cipher_id, int direction, 181 TEST_ASSERT( mbedtls_gcm_setkey( &ctx, cipher_id, key_str->x, key_str->len * 8 ) == 0 ); 191 void gcm_encrypt_and_tag( int cipher_id, data_t * key_str, 210 … TEST_ASSERT( mbedtls_gcm_setkey( &ctx, cipher_id, key_str->x, key_str->len * 8 ) == init_result ); 238 void gcm_decrypt_and_verify( int cipher_id, data_t * key_str, 256 … TEST_ASSERT( mbedtls_gcm_setkey( &ctx, cipher_id, key_str->x, key_str->len * 8 ) == init_result ); 291 void gcm_decrypt_and_verify_empty_cipher( int cipher_id, 302 TEST_ASSERT( mbedtls_gcm_setkey( &ctx, cipher_id, key_str->x, key_str->len * 8 ) == 0 ); 312 void gcm_decrypt_and_verify_empty_ad( int cipher_id, 324 TEST_ASSERT( mbedtls_gcm_setkey( &ctx, cipher_id, key_str->x, key_str->len * 8 ) == 0 ); [all …]
|
D | test_suite_ccm.function | 77 void mbedtls_ccm_setkey( int cipher_id, int key_size, int result ) 88 ret = mbedtls_ccm_setkey( &ctx, cipher_id, key, key_size ); 179 void mbedtls_ccm_encrypt_and_tag( int cipher_id, data_t * key, 199 TEST_EQUAL( mbedtls_ccm_setkey( &ctx, cipher_id, key->x, key->len * 8 ), 0 ); 235 void mbedtls_ccm_star_no_tag( int cipher_id, int mode, data_t * key, 243 TEST_EQUAL( mbedtls_ccm_setkey( &ctx, cipher_id, key->x, key->len * 8 ), 0 ); 260 void mbedtls_ccm_auth_decrypt( int cipher_id, data_t * key, 278 TEST_EQUAL( mbedtls_ccm_setkey( &ctx, cipher_id, key->x, key->len * 8 ), 0 ); 323 void mbedtls_ccm_star_encrypt_and_tag( int cipher_id, 364 TEST_EQUAL( mbedtls_ccm_setkey( &ctx, cipher_id, [all …]
|
D | test_suite_cipher.function | 116 static int cipher_reset_key( mbedtls_cipher_context_t *ctx, int cipher_id, 129 mbedtls_cipher_info_from_type( cipher_id ), 136 mbedtls_cipher_info_from_type( cipher_id ) ) ); 381 void enc_dec_buf( int cipher_id, char * cipher_string, int key_len, 406 cipher_info = mbedtls_cipher_info_from_type( cipher_id ); 514 void enc_fail( int cipher_id, int pad_mode, int key_len, int length_val, 538 cipher_info = mbedtls_cipher_info_from_type( cipher_id ); 635 void enc_dec_buf_multipart( int cipher_id, int key_len, int first_length_val, 670 cipher_info = mbedtls_cipher_info_from_type( cipher_id ); 756 void decrypt_test_vec( int cipher_id, int pad_mode, data_t * key, [all …]
|
D | test_suite_nist_kw.function | 128 void mbedtls_nist_kw_setkey( int cipher_id, int key_size, 140 ret = mbedtls_nist_kw_setkey( &ctx, cipher_id, key, key_size, is_wrap ); 245 void mbedtls_nist_kw_wrap( int cipher_id, int mode, data_t *key, data_t *msg, 256 TEST_ASSERT( mbedtls_nist_kw_setkey( &ctx, cipher_id, 280 void mbedtls_nist_kw_unwrap( int cipher_id, int mode, data_t *key, data_t *msg, 291 TEST_ASSERT( mbedtls_nist_kw_setkey( &ctx, cipher_id,
|
/third_party/openssl/test/ |
D | cipherlist_test.c | 153 uint32_t expected_cipher_id, cipher_id; in test_default_cipherlist() local 169 cipher_id = SSL_CIPHER_get_id(sk_SSL_CIPHER_value(ciphers, i)); in test_default_cipherlist() 170 if (!TEST_int_eq(cipher_id, expected_cipher_id)) { in test_default_cipherlist()
|
D | sslapitest.c | 4535 clntsess->cipher_id = clntsess->cipher->id; in test_ciphersuite_change()
|
/third_party/openssl/ssl/ |
D | ssl_txt.c | 48 if (((x->cipher_id) & 0xff000000) == 0x02000000) { in SSL_SESSION_print() 50 x->cipher_id & 0xffffff) <= 0) in SSL_SESSION_print() 54 x->cipher_id & 0xffff) <= 0) in SSL_SESSION_print()
|
D | ssl_asn1.c | 131 if ((in == NULL) || ((in->cipher == NULL) && (in->cipher_id == 0))) in i2d_SSL_SESSION() 142 l = in->cipher_id; in i2d_SSL_SESSION() 289 ret->cipher_id = id; in d2i_SSL_SESSION()
|
D | ssl_ciph.c | 808 static void ssl_cipher_apply_rule(uint32_t cipher_id, uint32_t alg_mkey, in ssl_cipher_apply_rule() argument 871 if (cipher_id != 0 && (cipher_id != cp->id)) in ssl_cipher_apply_rule() 1003 uint32_t cipher_id = 0; in ssl_cipher_process_rulestr() local 1094 cipher_id = 0; in ssl_cipher_process_rulestr() 1190 cipher_id = ca_list[j]->id; in ssl_cipher_process_rulestr() 1240 ssl_cipher_apply_rule(cipher_id, in ssl_cipher_process_rulestr()
|
D | ssl_local.h | 602 unsigned long cipher_id; /* when ASN.1 loaded, this needs to be used to member
|
/third_party/mbedtls/library/ |
D | psa_crypto_aead.c | 51 mbedtls_cipher_id_t cipher_id; in psa_aead_setup() local 60 &cipher_id ); in psa_aead_setup() 78 mbedtls_ccm_setkey( &operation->ctx.ccm, cipher_id, in psa_aead_setup() 97 mbedtls_gcm_setkey( &operation->ctx.gcm, cipher_id, in psa_aead_setup()
|
D | psa_crypto_cipher.c | 38 mbedtls_cipher_id_t* cipher_id ) in mbedtls_cipher_info_from_psa() argument 122 if( cipher_id != NULL ) in mbedtls_cipher_info_from_psa() 123 *cipher_id = cipher_id_tmp; in mbedtls_cipher_info_from_psa()
|
D | psa_crypto_cipher.h | 41 mbedtls_cipher_id_t *cipher_id );
|
D | psa_crypto_core.h | 263 mbedtls_cipher_id_t *cipher_id );
|
D | cipher.c | 129 const mbedtls_cipher_id_t cipher_id, in mbedtls_cipher_info_from_values() argument 136 if( def->info->base->cipher == cipher_id && in mbedtls_cipher_info_from_values()
|
/third_party/rust/crates/rust-openssl/openssl-sys/src/handwritten/ |
D | ssl.rs | 25 cipher_id: c_long, 51 cipher_id: c_ulong, 94 cipher_id: c_ulong,
|
/third_party/mbedtls/include/mbedtls/ |
D | cipher.h | 430 const mbedtls_cipher_info_t *mbedtls_cipher_info_from_values( const mbedtls_cipher_id_t cipher_id,
|
/third_party/openssl/ssl/statem/ |
D | statem_clnt.c | 1346 s->session->cipher_id = s->session->cipher->id; in set_client_ciphersuite() 1347 if (s->hit && (s->session->cipher_id != c->id)) { in set_client_ciphersuite()
|
/third_party/python/Modules/ |
D | _ssl.c | 1943 unsigned long cipher_id; in cipher_to_dict() local 1952 cipher_id = SSL_CIPHER_get_id(cipher); in cipher_to_dict() 1974 "id", cipher_id, in cipher_to_dict()
|