Home
last modified time | relevance | path

Searched refs:cipher_type (Results 1 – 18 of 18) sorted by relevance

/third_party/gstreamer/gstplugins_bad/ext/srtp/
Dgstsrtp.c221 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/
Dtest_suite_cmac.function102 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 ) )
Dtest_suite_cipher.function171 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 ) )
Dtest_suite_ssl.function1191 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/
Dcmac.c749 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()
Dpkcs12.c125 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()
Dcipher.c102 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/
Dktls.c183 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/
Dcmeth_lib.c23 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/
Dpkcs12.h74 mbedtls_cipher_type_t cipher_type, mbedtls_md_type_t md_type,
Dcipher.h414 const mbedtls_cipher_info_t *mbedtls_cipher_info_from_type( const mbedtls_cipher_type_t cipher_type
/third_party/mbedtls/programs/test/
Dbenchmark.c829 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/
Dnode_crypto.h555 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,
Dnode_crypto.cc3592 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/
DEVP_CIPHER_meth_new.pod24 EVP_CIPHER *EVP_CIPHER_meth_new(int cipher_type, int block_size, int key_len);
/third_party/openssl/ohos_lite/include/openssl/
Devp.h185 EVP_CIPHER *EVP_CIPHER_meth_new(int cipher_type, int block_size, int key_len);
/third_party/openssl/include/openssl/
Devp.h232 EVP_CIPHER *EVP_CIPHER_meth_new(int cipher_type, int block_size, int key_len);
/third_party/libbpf/.github/actions/build-selftests/
Dvmlinux.h77887 __u16 cipher_type; member
77963 u16 cipher_type; member