Home
last modified time | relevance | path

Searched refs:cipher_t (Results 1 – 11 of 11) sorted by relevance

/external/srtp/crypto/test/
Dcipher_driver.c57 cipher_driver_test_throughput(cipher_t *c);
70 cipher_driver_test_buffering(cipher_t *c);
81 cipher_array_test_throughput(cipher_t *ca[], int num_cipher);
84 cipher_array_bits_per_second(cipher_t *cipher_array[], int num_cipher,
88 cipher_array_delete(cipher_t *cipher_array[], int num_cipher);
91 cipher_array_alloc_init(cipher_t ***cipher_array, int num_ciphers,
121 cipher_t *c = NULL; in main()
224 cipher_driver_test_throughput(cipher_t *c) { in cipher_driver_test_throughput()
260 cipher_driver_test_buffering(cipher_t *c) { in cipher_driver_test_buffering()
345 cipher_array_alloc_init(cipher_t ***ca, int num_ciphers, in cipher_array_alloc_init()
[all …]
Dstat_driver.c39 cipher_t *c; in main()
/external/srtp/crypto/cipher/
Dnull_cipher.c56 null_cipher_alloc(cipher_t **c, int key_len) { in null_cipher_alloc()
64 pointer = (uint8_t*)crypto_alloc(sizeof(null_cipher_ctx_t) + sizeof(cipher_t)); in null_cipher_alloc()
69 *c = (cipher_t *)pointer; in null_cipher_alloc()
71 (*c)->state = pointer + sizeof(cipher_t); in null_cipher_alloc()
84 null_cipher_dealloc(cipher_t *c) { in null_cipher_dealloc()
89 sizeof(null_cipher_ctx_t) + sizeof(cipher_t)); in null_cipher_dealloc()
Daes_cbc.c58 aes_cbc_alloc(cipher_t **c, int key_len) { in aes_cbc_alloc()
70 tmp = (sizeof(aes_cbc_ctx_t) + sizeof(cipher_t)); in aes_cbc_alloc()
76 *c = (cipher_t *)pointer; in aes_cbc_alloc()
78 (*c)->state = pointer + sizeof(cipher_t); in aes_cbc_alloc()
90 aes_cbc_dealloc(cipher_t *c) { in aes_cbc_dealloc()
95 sizeof(aes_cbc_ctx_t) + sizeof(cipher_t)); in aes_cbc_dealloc()
Daes_icm.c93 aes_icm_alloc_ismacryp(cipher_t **c, int key_len, int forIsmacryp) { in aes_icm_alloc_ismacryp()
113 tmp = (sizeof(aes_icm_ctx_t) + sizeof(cipher_t)); in aes_icm_alloc_ismacryp()
119 *c = (cipher_t *)pointer; in aes_icm_alloc_ismacryp()
121 (*c)->state = pointer + sizeof(cipher_t); in aes_icm_alloc_ismacryp()
132 err_status_t aes_icm_alloc(cipher_t **c, int key_len, int forIsmacryp) { in aes_icm_alloc()
137 aes_icm_dealloc(cipher_t *c) { in aes_icm_dealloc()
142 sizeof(aes_icm_ctx_t) + sizeof(cipher_t)); in aes_icm_dealloc()
Dcipher.c57 cipher_output(cipher_t *c, uint8_t *buffer, int num_octets_to_output) { in cipher_output()
69 cipher_get_key_length(const cipher_t *c) { in cipher_get_key_length()
86 cipher_t *c; in cipher_type_self_test()
379 cipher_bits_per_second(cipher_t *c, int octets_in_buffer, int num_trials) { in cipher_bits_per_second()
/external/srtp/crypto/include/
Dcipher.h74 typedef struct cipher_t *cipher_pointer_t;
157 typedef struct cipher_t { struct
164 } cipher_t; argument
185 cipher_output(cipher_t *c, uint8_t *buffer, int num_octets_to_output);
191 cipher_get_key_length(const cipher_t *c);
216 cipher_bits_per_second(cipher_t *c, int octets_in_buffer, int num_trials);
Daes_icm.h42 aes_icm_dealloc(cipher_t *c);
51 aes_icm_alloc_ismacryp(cipher_t **c,
/external/srtp/doc/
Dcrypto_kernel.txt28 cipher_type_alloc(cipher_type_t *ctype, cipher_t **cipher,
38 cipher_init(cipher_t *cipher, const uint8_t *key);
46 cipher_set_iv(cipher_t *cipher, void *iv);
54 cipher_encrypt(cipher_t *cipher, void *buf, unsigned int *len);
61 cipher_output(cipher_t *c, uint8_t *buffer, int num_octets_to_output);
68 cipher_dealloc(cipher_t *cipher);
/external/srtp/include/
Dsrtp_priv.h218 cipher_t *rtp_cipher;
222 cipher_t *rtcp_cipher;
/external/srtp/googlepatches/
Dgoogle-5-buffer-overflow.patch5 @@ -164,18 +164,20 @@ aes_icm_dealloc(cipher_t *c) {