Home
last modified time | relevance | path

Searched refs:srtp_crypto_alloc (Results 1 – 16 of 16) sorted by relevance

/external/libsrtp2/crypto/hash/
Dhmac_ossl.c87 pointer = (uint8_t *)srtp_crypto_alloc(sizeof(HMAC_CTX) + in srtp_hmac_alloc()
100 *a = (srtp_auth_t *)srtp_crypto_alloc(sizeof(srtp_auth_t)); in srtp_hmac_alloc()
Dnull_auth.c69 pointer = (uint8_t *)srtp_crypto_alloc(sizeof(srtp_null_auth_ctx_t) + in srtp_null_auth_alloc()
Dhmac.c86 pointer = (uint8_t *)srtp_crypto_alloc(sizeof(srtp_hmac_ctx_t) + in srtp_hmac_alloc()
/external/libsrtp2/crypto/include/
Dalloc.h62 void *srtp_crypto_alloc(size_t size);
/external/libsrtp2/crypto/kernel/
Dcrypto_kernel.c321 new_ctype = (srtp_kernel_cipher_type_t *)srtp_crypto_alloc( in srtp_crypto_kernel_do_load_cipher_type()
397 new_atype = (srtp_kernel_auth_type_t *)srtp_crypto_alloc( in srtp_crypto_kernel_do_load_auth_type()
530 new = (srtp_kernel_debug_module_t *)srtp_crypto_alloc( in srtp_crypto_kernel_load_debug_module()
Dalloc.c70 void *srtp_crypto_alloc(size_t size) in srtp_crypto_alloc() function
/external/libsrtp2/crypto/test/
Dcipher_driver.c453 cipher_array = (srtp_cipher_t **)srtp_crypto_alloc(sizeof(srtp_cipher_t *) * in cipher_array_alloc_init()
462 key = srtp_crypto_alloc(klen_pad); in cipher_array_alloc_init()
534 enc_buf = srtp_crypto_alloc(octets_in_buffer + 17); in cipher_array_bits_per_second()
/external/libsrtp2/crypto/cipher/
Daes_icm_ossl.c128 *c = (srtp_cipher_t *)srtp_crypto_alloc(sizeof(srtp_cipher_t)); in srtp_aes_icm_openssl_alloc()
133 icm = (srtp_aes_icm_ctx_t *)srtp_crypto_alloc(sizeof(srtp_aes_icm_ctx_t)); in srtp_aes_icm_openssl_alloc()
Daes_gcm_ossl.c100 *c = (srtp_cipher_t *)srtp_crypto_alloc(sizeof(srtp_cipher_t)); in srtp_aes_gcm_openssl_alloc()
105 gcm = (srtp_aes_gcm_ctx_t *)srtp_crypto_alloc(sizeof(srtp_aes_gcm_ctx_t)); in srtp_aes_gcm_openssl_alloc()
Daes_icm_nss.c132 *c = (srtp_cipher_t *)srtp_crypto_alloc(sizeof(srtp_cipher_t)); in srtp_aes_icm_nss_alloc()
138 icm = (srtp_aes_icm_ctx_t *)srtp_crypto_alloc(sizeof(srtp_aes_icm_ctx_t)); in srtp_aes_icm_nss_alloc()
Dnull_cipher.c67 *c = (srtp_cipher_t *)srtp_crypto_alloc(sizeof(srtp_cipher_t)); in srtp_null_cipher_alloc()
Daes_icm.c116 *c = (srtp_cipher_t *)srtp_crypto_alloc(sizeof(srtp_cipher_t)); in srtp_aes_icm_alloc()
121 icm = (srtp_aes_icm_ctx_t *)srtp_crypto_alloc(sizeof(srtp_aes_icm_ctx_t)); in srtp_aes_icm_alloc()
Daes_gcm_nss.c112 *c = (srtp_cipher_t *)srtp_crypto_alloc(sizeof(srtp_cipher_t)); in srtp_aes_gcm_nss_alloc()
118 gcm = (srtp_aes_gcm_ctx_t *)srtp_crypto_alloc(sizeof(srtp_aes_gcm_ctx_t)); in srtp_aes_gcm_nss_alloc()
Dcipher.c636 enc_buf = (unsigned char *)srtp_crypto_alloc(octets_in_buffer); in srtp_cipher_bits_per_second()
/external/libsrtp2/srtp/
Dsrtp.c301 str = (srtp_stream_ctx_t *)srtp_crypto_alloc(sizeof(srtp_stream_ctx_t)); in srtp_stream_alloc()
317 str->session_keys = (srtp_session_keys_t *)srtp_crypto_alloc( in srtp_stream_alloc()
370 session_keys->limit = (srtp_key_limit_ctx_t *)srtp_crypto_alloc( in srtp_stream_alloc()
389 str->enc_xtn_hdr = (int *)srtp_crypto_alloc(p->enc_xtn_hdr_count * in srtp_stream_alloc()
464 str = (srtp_stream_ctx_t *)srtp_crypto_alloc(sizeof(srtp_stream_ctx_t)); in srtp_stream_clone()
470 str->session_keys = (srtp_session_keys_t *)srtp_crypto_alloc( in srtp_stream_clone()
496 srtp_crypto_alloc(template_session_keys->mki_size); in srtp_stream_clone()
896 session_keys->mki_id = srtp_crypto_alloc(master_key->mki_size); in srtp_stream_init_keys()
2905 ctx = (srtp_ctx_t *)srtp_crypto_alloc(sizeof(srtp_ctx_t)); in srtp_create()
/external/libsrtp2/crypto/math/
Ddatatypes.c336 v->word = (uint32_t *)srtp_crypto_alloc(l); in bitvector_alloc()