Searched refs:cipher_init (Results 1 – 10 of 10) sorted by relevance
/external/srtp/crypto/cipher/ |
D | cipher.c | 120 status = cipher_init(c, test_case->key, direction_encrypt); in cipher_type_self_test() 187 status = cipher_init(c, test_case->key, direction_decrypt); in cipher_type_self_test() 300 status = cipher_init(c, key, direction_encrypt); in cipher_type_self_test() 327 status = cipher_init(c, key, direction_decrypt); in cipher_type_self_test()
|
/external/srtp/crypto/test/ |
D | cipher_driver.c | 186 status = cipher_init(c, NULL, direction_encrypt); in main() 206 status = cipher_init(c, test_key, direction_encrypt); in main() 378 status = cipher_init(*cipher_array, key, direction_encrypt); in cipher_array_alloc_init()
|
D | stat_driver.c | 73 err_check(cipher_init(c, key, direction_encrypt)); in main()
|
/external/openssh/ |
D | cipher.h | 83 int cipher_init(struct sshcipher_ctx *, const struct sshcipher *,
|
D | cipher.c | 296 cipher_init(struct sshcipher_ctx *cc, const struct sshcipher *cipher, in cipher_init() function 498 r = cipher_init(cc, cipher, digest, 16, NULL, 0, do_encrypt); in cipher_set_key_string()
|
D | packet.c | 288 if ((r = cipher_init(&state->send_context, none, in ssh_packet_set_connection() 290 (r = cipher_init(&state->receive_context, none, in ssh_packet_set_connection() 811 if ((r = cipher_init(&state->send_context, cipher, key, keylen, in ssh_packet_set_encryption_key() 813 (r = cipher_init(&state->receive_context, cipher, key, keylen, in ssh_packet_set_encryption_key() 975 if ((r = cipher_init(cc, enc->cipher, enc->key, enc->key_len, in ssh_set_newkeys()
|
D | sshkey.c | 3052 if ((r = cipher_init(&ciphercontext, cipher, key, keylen, in sshkey_private_to_blob2() 3285 (r = cipher_init(&ciphercontext, cipher, key, keylen, in sshkey_parse_private2()
|
/external/srtp/crypto/include/ |
D | cipher.h | 172 #define cipher_init(c, k, dir) (((c)->type)->init(((c)->state), (k), (dir))) macro
|
/external/srtp/doc/ |
D | crypto_kernel.txt | 38 cipher_init(cipher_t *cipher, const uint8_t *key);
|
/external/srtp/srtp/ |
D | srtp.c | 392 stat = cipher_init(srtp->rtp_cipher, tmp_key, direction_any); in srtp_stream_init_keys() 441 stat = cipher_init(srtp->rtcp_cipher, tmp_key, direction_any); in srtp_stream_init_keys()
|