/external/srtp/crypto/ae_xfm/ |
xfm.c | 29 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 = (unsigned char *)opaque 450 unsigned char *auth_tag; local 504 unsigned char *auth_tag; local [all...] |
/external/srtp/crypto/include/ |
xfm.h | 48 * @param auth_tag location to write auth tag 58 void *auth_tag 71 void *auth_tag /* location of auth tag */
|
/external/srtp/srtp/ |
srtp.c | 604 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...] |
ekt.c | 251 * 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 */
|