OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:crypto_alloc
(Results
1 - 13
of
13
) sorted by null
/external/srtp/crypto/include/
alloc.h
52
crypto_alloc
(size_t size);
/external/srtp/crypto/kernel/
alloc.c
56
* Nota bene: the debugging statements for
crypto_alloc
() and
69
crypto_alloc
(size_t size) {
function
94
crypto_alloc
(size_t size) {
function
crypto_kernel.c
325
new_ctype = (kernel_cipher_type_t *)
crypto_alloc
(sizeof(kernel_cipher_type_t));
370
new_atype = (kernel_auth_type_t *)
crypto_alloc
(sizeof(kernel_auth_type_t));
486
new = (kernel_debug_module_t *)
crypto_alloc
(sizeof(kernel_debug_module_t));
/external/srtp/crypto/cipher/
null_cipher.c
64
pointer = (uint8_t*)
crypto_alloc
(sizeof(null_cipher_ctx_t) + sizeof(cipher_t));
cipher.c
49
#include "alloc.h" /* for
crypto_alloc
(), crypto_free() */
386
enc_buf = (unsigned char*)
crypto_alloc
(octets_in_buffer);
aes_cbc.c
71
pointer = (uint8_t*)
crypto_alloc
(tmp);
aes_icm.c
114
pointer = (uint8_t*)
crypto_alloc
(tmp);
/external/srtp/crypto/hash/
null_auth.c
64
pointer = (uint8_t*)
crypto_alloc
(sizeof(null_auth_ctx_t) + sizeof(auth_t));
hmac.c
76
pointer = (uint8_t*)
crypto_alloc
(sizeof(hmac_ctx_t) + sizeof(auth_t));
/external/srtp/crypto/test/
auth_driver.c
175
msg_string = (uint16_t *)
crypto_alloc
(msg_len_octets);
182
result =
crypto_alloc
(auth_get_tag_length(a));
cipher_driver.c
361
key =
crypto_alloc
(klen);
429
enc_buf =
crypto_alloc
(octets_in_buffer);
/external/srtp/srtp/
srtp.c
49
#include "alloc.h" /* for
crypto_alloc
() */
92
str = (srtp_stream_ctx_t *)
crypto_alloc
(sizeof(srtp_stream_ctx_t));
116
str->limit = (key_limit_ctx_t*)
crypto_alloc
(sizeof(key_limit_ctx_t));
242
str = (srtp_stream_ctx_t *)
crypto_alloc
(sizeof(srtp_stream_ctx_t));
[
all
...]
/external/srtp/crypto/math/
datatypes.c
428
v->word = (uint32_t*)
crypto_alloc
(l);
Completed in 781 milliseconds