OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:enc_buf
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/libsrtp/srtp/crypto/cipher/
cipher.c
397
unsigned char *
enc_buf
;
local
400
enc_buf
= (unsigned char*) crypto_alloc(octets_in_buffer);
401
if (
enc_buf
== NULL)
409
cipher_encrypt(c,
enc_buf
, &len);
413
crypto_free(
enc_buf
);
/external/chromium_org/third_party/libsrtp/srtp/crypto/test/
cipher_driver.c
461
unsigned char *
enc_buf
;
local
465
enc_buf
= crypto_alloc(octets_in_buffer+17);
466
if (
enc_buf
== NULL)
468
memset(
enc_buf
, 0, octets_in_buffer);
480
cipher_encrypt(cipher_array[cipher_index],
enc_buf
, &octets_to_encrypt);
483
cipher_index = (*((uint32_t *)
enc_buf
)) % num_cipher;
487
free(
enc_buf
);
Completed in 61 milliseconds