Home
last modified time | relevance | path

Searched refs:cipher_init (Results 1 – 10 of 10) sorted by relevance

/external/srtp/crypto/cipher/
Dcipher.c120 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/
Dcipher_driver.c186 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()
Dstat_driver.c73 err_check(cipher_init(c, key, direction_encrypt)); in main()
/external/openssh/
Dcipher.h83 int cipher_init(struct sshcipher_ctx *, const struct sshcipher *,
Dcipher.c296 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()
Dpacket.c288 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()
Dsshkey.c3052 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/
Dcipher.h172 #define cipher_init(c, k, dir) (((c)->type)->init(((c)->state), (k), (dir))) macro
/external/srtp/doc/
Dcrypto_kernel.txt38 cipher_init(cipher_t *cipher, const uint8_t *key);
/external/srtp/srtp/
Dsrtp.c392 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()