/third_party/gstreamer/gstplugins_bad/ext/srtp/ |
D | gstsrtp.c | 221 policy->cipher_type = SRTP_AES_ICM_128; in set_crypto_policy_cipher_auth() 224 policy->cipher_type = SRTP_AES_ICM_256; in set_crypto_policy_cipher_auth() 227 policy->cipher_type = SRTP_AES_GCM_128; in set_crypto_policy_cipher_auth() 230 policy->cipher_type = SRTP_AES_GCM_256; in set_crypto_policy_cipher_auth() 233 policy->cipher_type = SRTP_NULL_CIPHER; in set_crypto_policy_cipher_auth()
|
/third_party/mbedtls/tests/suites/ |
D | test_suite_cmac.function | 102 void mbedtls_cmac_setkey( int cipher_type, int key_size, int result ) 112 TEST_ASSERT( ( cipher_info = mbedtls_cipher_info_from_type( cipher_type ) ) 122 void mbedtls_cmac_multiple_blocks( int cipher_type, data_t * key, 145 TEST_ASSERT( ( cipher_info = mbedtls_cipher_info_from_type( cipher_type ) ) 186 void mbedtls_cmac_multiple_operations_same_key( int cipher_type, 225 TEST_ASSERT( ( cipher_info = mbedtls_cipher_info_from_type( cipher_type ) )
|
D | test_suite_cipher.function | 171 const int *cipher_type; 173 for( cipher_type = mbedtls_cipher_list(); *cipher_type != 0; cipher_type++ ) 176 mbedtls_cipher_info_from_type( *cipher_type ); 177 mbedtls_test_set_step( *cipher_type ); 178 if( ! check_cipher_info( *cipher_type, info ) )
|
D | test_suite_ssl.function | 1191 int cipher_type, int hash_id, 1218 cipher_info = mbedtls_cipher_info_from_type( cipher_type ); 3162 void ssl_crypt_record( int cipher_type, int hash_id, 3184 TEST_ASSERT( build_transforms( &t0, &t1, cipher_type, hash_id, 3295 void ssl_crypt_record_small( int cipher_type, int hash_id, 3340 TEST_ASSERT( build_transforms( &t0, &t1, cipher_type, hash_id, 3461 void ssl_decrypt_non_etm_cbc( int cipher_type, int hash_id, int trunc_hmac, 3497 TEST_ASSERT( build_transforms( &t0, &t1, cipher_type, hash_id,
|
/third_party/mbedtls/library/ |
D | cmac.c | 749 mbedtls_cipher_type_t cipher_type, in cmac_test_subkeys() argument 759 cipher_info = mbedtls_cipher_info_from_type( cipher_type ); in cmac_test_subkeys() 790 cipher_type == MBEDTLS_CIPHER_AES_192_ECB ) { in cmac_test_subkeys() 844 mbedtls_cipher_type_t cipher_type, in cmac_test_wth_cipher() argument 852 cipher_info = mbedtls_cipher_info_from_type( cipher_type ); in cmac_test_wth_cipher() 874 ( cipher_type == MBEDTLS_CIPHER_AES_192_ECB || in cmac_test_wth_cipher() 875 cipher_type == MBEDTLS_CIPHER_DES_EDE3_ECB ) ) { in cmac_test_wth_cipher()
|
D | pkcs12.c | 125 mbedtls_cipher_type_t cipher_type, mbedtls_md_type_t md_type, in mbedtls_pkcs12_pbe() argument 140 cipher_info = mbedtls_cipher_info_from_type( cipher_type ); in mbedtls_pkcs12_pbe()
|
D | cipher.c | 102 const mbedtls_cipher_type_t cipher_type ) in mbedtls_cipher_info_from_type() argument 107 if( def->type == cipher_type ) in mbedtls_cipher_info_from_type()
|
/third_party/openssl/ssl/ |
D | ktls.c | 183 crypto_info->gcm128.info.cipher_type = TLS_CIPHER_AES_GCM_128; in ktls_configure_crypto() 198 crypto_info->gcm256.info.cipher_type = TLS_CIPHER_AES_GCM_256; in ktls_configure_crypto() 213 crypto_info->ccm128.info.cipher_type = TLS_CIPHER_AES_CCM_128; in ktls_configure_crypto() 228 crypto_info->chacha20poly1305.info.cipher_type = TLS_CIPHER_CHACHA20_POLY1305; in ktls_configure_crypto()
|
/third_party/openssl/crypto/evp/ |
D | cmeth_lib.c | 23 EVP_CIPHER *EVP_CIPHER_meth_new(int cipher_type, int block_size, int key_len) in EVP_CIPHER_meth_new() argument 28 cipher->nid = cipher_type; in EVP_CIPHER_meth_new()
|
/third_party/mbedtls/include/mbedtls/ |
D | pkcs12.h | 74 mbedtls_cipher_type_t cipher_type, mbedtls_md_type_t md_type,
|
D | cipher.h | 414 const mbedtls_cipher_info_t *mbedtls_cipher_info_from_type( const mbedtls_cipher_type_t cipher_type…
|
/third_party/mbedtls/programs/test/ |
D | benchmark.c | 829 mbedtls_cipher_type_t cipher_type; in main() local 832 for( keysize = 128, cipher_type = MBEDTLS_CIPHER_AES_128_ECB; in main() 834 keysize += 64, cipher_type++ ) in main() 841 cipher_info = mbedtls_cipher_info_from_type( cipher_type ); in main()
|
/third_party/node/src/ |
D | node_crypto.h | 555 void CommonInit(const char* cipher_type, 562 void Init(const char* cipher_type, 566 void InitIv(const char* cipher_type, 572 bool InitAuthenticated(const char* cipher_type, int iv_len,
|
D | node_crypto.cc | 3592 void CipherBase::CommonInit(const char* cipher_type, in CommonInit() argument 3615 if (!InitAuthenticated(cipher_type, iv_len, auth_tag_len)) in CommonInit() 3630 void CipherBase::Init(const char* cipher_type, in Init() argument 3642 const EVP_CIPHER* const cipher = EVP_get_cipherbyname(cipher_type); in Init() 3667 cipher_type); in Init() 3670 CommonInit(cipher_type, cipher, key, key_len, iv, in Init() 3681 const node::Utf8Value cipher_type(args.GetIsolate(), args[0]); in Init() local 3694 cipher->Init(*cipher_type, key_buf.data(), key_buf.length(), auth_tag_len); in Init() 3697 void CipherBase::InitIv(const char* cipher_type, in InitIv() argument 3706 const EVP_CIPHER* const cipher = EVP_get_cipherbyname(cipher_type); in InitIv() [all …]
|
/third_party/openssl/doc/man3/ |
D | EVP_CIPHER_meth_new.pod | 24 EVP_CIPHER *EVP_CIPHER_meth_new(int cipher_type, int block_size, int key_len);
|
/third_party/openssl/ohos_lite/include/openssl/ |
D | evp.h | 185 EVP_CIPHER *EVP_CIPHER_meth_new(int cipher_type, int block_size, int key_len);
|
/third_party/openssl/include/openssl/ |
D | evp.h | 232 EVP_CIPHER *EVP_CIPHER_meth_new(int cipher_type, int block_size, int key_len);
|
/third_party/libbpf/.github/actions/build-selftests/ |
D | vmlinux.h | 77887 __u16 cipher_type; member 77963 u16 cipher_type; member
|