HomeSort by relevance Sort by last modified time
    Searched refs:tmp_key (Results 1 - 5 of 5) sorted by null

  /external/srtp/crypto/rng/
ctr_prng.c 54 uint8_t tmp_key[32]; local
64 status = random_source(tmp_key, 32);
69 status = aes_icm_context_init(&ctr_prng.state, tmp_key);
prng.c 54 v128_t tmp_key; local
64 status = random_source((uint8_t *)&tmp_key, 16);
69 aes_expand_encryption_key(&tmp_key, x917_prng.key);
  /external/srtp/crypto/cipher/
aes_cbc.c 109 v128_t tmp_key; local
111 /* set tmp_key (for alignment) */
112 v128_copy_octet_string(&tmp_key, key);
115 "key: %s", v128_hex_string(&tmp_key));
120 aes_expand_encryption_key(&tmp_key, c->expanded_key);
123 aes_expand_decryption_key(&tmp_key, c->expanded_key);
aes_icm.c 166 v128_t tmp_key; local
181 /* set tmp_key (for alignment) */
182 v128_copy_octet_string(&tmp_key, key);
185 "key: %s", v128_hex_string(&tmp_key));
190 aes_expand_encryption_key(&tmp_key, c->expanded_key);
  /external/srtp/srtp/
srtp.c 364 uint8_t tmp_key[MAX_SRTP_KEY_LEN]; local
371 tmp_key, cipher_get_key_length(srtp->rtp_cipher));
385 tmp_key + base_key_len, salt_len);
388 octet_string_hex_string(tmp_key,
392 stat = cipher_init(srtp->rtp_cipher, tmp_key, direction_any);
395 octet_string_set_to_zero(tmp_key, MAX_SRTP_KEY_LEN);
401 tmp_key, auth_get_key_length(srtp->rtp_auth));
403 octet_string_hex_string(tmp_key,
407 stat = auth_init(srtp->rtp_auth, tmp_key);
410 octet_string_set_to_zero(tmp_key, MAX_SRTP_KEY_LEN)
    [all...]

Completed in 78 milliseconds