Searched refs:auth_tag (Results 1 - 10 of 10) sorted by relevance

/external/chromium_org/third_party/libsrtp/srtp/crypto/ae_xfm/
H A Dxfm.c64 void *auth_tag) {
123 status = hmac_compute(&hmac_ctx, opaque, *opaque_len, TAG_LEN, auth_tag);
138 void *auth_tag) {
144 unsigned char *tag = auth_tag;
228 unsigned char *auth_tag; local
308 auth_tag = (unsigned char *)opaque;
309 auth_tag += *opaque_len;
310 status = hmac_compute(&hmac_ctx, opaque, *opaque_len, TAG_LEN, auth_tag);
340 unsigned char *auth_tag; local
420 auth_tag
58 aes_128_cbc_hmac_sha1_96_func(void *key, void *clear, unsigned clear_len, void *iv, void *opaque, unsigned *opaque_len, void *auth_tag) argument
132 aes_128_cbc_hmac_sha1_96_inv(void *key, void *clear, unsigned clear_len, void *iv, void *opaque, unsigned *opaque_len, void *auth_tag) argument
484 unsigned char *auth_tag; local
538 unsigned char *auth_tag; local
[all...]
/external/srtp/crypto/ae_xfm/
H A Dxfm.c29 void *auth_tag) {
88 status = hmac_compute(&hmac_ctx, opaque, *opaque_len, TAG_LEN, auth_tag);
103 void *auth_tag) {
109 unsigned char *tag = auth_tag;
194 unsigned char *auth_tag; local
274 auth_tag = (unsigned char *)opaque;
275 auth_tag += *opaque_len;
276 status = hmac_compute(&hmac_ctx, opaque, *opaque_len, TAG_LEN, auth_tag);
306 unsigned char *auth_tag; local
386 auth_tag
23 aes_128_cbc_hmac_sha1_96_func(void *key, void *clear, unsigned clear_len, void *iv, void *opaque, unsigned *opaque_len, void *auth_tag) argument
97 aes_128_cbc_hmac_sha1_96_inv(void *key, void *clear, unsigned clear_len, void *iv, void *opaque, unsigned *opaque_len, void *auth_tag) argument
450 unsigned char *auth_tag; local
504 unsigned char *auth_tag; local
[all...]
/external/chromium_org/third_party/libsrtp/srtp/crypto/include/
H A Dxfm.h83 * @param auth_tag location to write auth tag
93 void *auth_tag
106 void *auth_tag /* location of auth tag */
/external/srtp/crypto/include/
H A Dxfm.h48 * @param auth_tag location to write auth tag
58 void *auth_tag
71 void *auth_tag /* location of auth tag */
/external/chromium_org/net/quic/crypto/
H A Daes_128_gcm_12_decrypter_nss.cc192 unsigned char auth_tag[Aes128Gcm12Decrypter::kAuthTagSize]; local
193 ghash.Finish(auth_tag, Aes128Gcm12Decrypter::kAuthTagSize);
195 auth_tag[i] ^= tag_mask[i];
198 if (NSS_SecureMemcmp(auth_tag, enc + output_len,
/external/chromium_org/third_party/libsrtp/srtp/srtp/
H A Dsrtp.c747 uint8_t *auth_tag = NULL; /* location of auth_tag within packet */ local
851 * if we're providing authentication, set the auth_start and auth_tag
857 auth_tag = (uint8_t *)hdr + *pkt_octet_len;
860 auth_tag = NULL;
932 status = cipher_output(stream->rtp_cipher, auth_tag, prefix_len);
936 octet_string_hex_string(auth_tag, prefix_len));
950 * into the auth_tag
963 /* run auth func over ROC, put result into auth_tag */
965 status = auth_compute(stream->rtp_auth, (uint8_t *)&est, 4, auth_tag);
989 uint8_t *auth_tag = NULL; /* location of auth_tag within packet */ local
1655 uint8_t *auth_tag = NULL; /* location of auth_tag within packet */ local
1838 uint8_t *auth_tag = NULL; /* location of auth_tag within packet */ local
[all...]
H A Dekt.c254 * The function call srtcp_ekt_trailer(ekt, auth_len, auth_tag )
258 * auth_tag is a pointer to the pointer to the location of the
260 * auth_tag pointer is set to the location
266 void **auth_tag,
275 /* copy auth_tag into temporary location */
264 srtcp_ekt_trailer(ekt_stream_t ekt, unsigned *auth_len, void **auth_tag, void *tag_copy) argument
/external/srtp/srtp/
H A Dsrtp.c604 uint8_t *auth_tag = NULL; /* location of auth_tag within packet */ local
707 * if we're providing authentication, set the auth_start and auth_tag
713 auth_tag = (uint8_t *)hdr + *pkt_octet_len;
716 auth_tag = NULL;
788 status = cipher_output(stream->rtp_cipher, auth_tag, prefix_len);
792 octet_string_hex_string(auth_tag, prefix_len));
806 * into the auth_tag
819 /* run auth func over ROC, put result into auth_tag */
821 status = auth_compute(stream->rtp_auth, (uint8_t *)&est, 4, auth_tag);
845 uint8_t *auth_tag = NULL; /* location of auth_tag within packet */ local
1452 uint8_t *auth_tag = NULL; /* location of auth_tag within packet */ local
1635 uint8_t *auth_tag = NULL; /* location of auth_tag within packet */ local
[all...]
H A Dekt.c251 * The function call srtcp_ekt_trailer(ekt, auth_len, auth_tag )
255 * auth_tag is a pointer to the pointer to the location of the
257 * auth_tag pointer is set to the location
263 void **auth_tag,
272 /* copy auth_tag into temporary location */
261 srtcp_ekt_trailer(ekt_stream_t ekt, unsigned *auth_len, void **auth_tag, void *tag_copy) argument
/external/chromium_org/content/browser/renderer_host/p2p/
H A Dsocket_host.cc192 char* auth_tag = rtp + (length - tag_length); local
194 // We should have a fake HMAC value @ auth_tag.
195 DCHECK_EQ(0, memcmp(auth_tag, kFakeAuthTag, tag_length));
198 memcpy(auth_tag, &options.packet_time_params.srtp_packet_index, kRocLength);
210 memcpy(auth_tag, output, tag_length);

Completed in 5065 milliseconds