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

  /external/srtp/crypto/include/
null_auth.h 55 null_auth_alloc(auth_t **a, int key_len, int out_len);
58 null_auth_dealloc(auth_t *a);
auth.h 53 typedef struct auth_t *auth_pointer_t;
90 /* functions to get information about a particular auth_t */
93 auth_get_key_length(const struct auth_t *a);
96 auth_get_tag_length(const struct auth_t *a);
99 auth_get_prefix_length(const struct auth_t *a);
134 typedef struct auth_t { struct
140 } auth_t; typedef in typeref:struct:auth_t
hmac.h 59 hmac_alloc(auth_t **a, int key_len, int out_len);
62 hmac_dealloc(auth_t *a);
  /external/srtp/crypto/hash/
null_auth.c 56 null_auth_alloc(auth_t **a, int key_len, int out_len) {
64 pointer = (uint8_t*)crypto_alloc(sizeof(null_auth_ctx_t) + sizeof(auth_t));
69 *a = (auth_t *)pointer;
71 (*a)->state = pointer + sizeof (auth_t);
83 null_auth_dealloc(auth_t *a) {
88 sizeof(null_auth_ctx_t) + sizeof(auth_t));
auth.c 57 auth_get_key_length(const auth_t *a) {
62 auth_get_tag_length(const auth_t *a) {
67 auth_get_prefix_length(const auth_t *a) {
88 auth_t *a;
hmac.c 57 hmac_alloc(auth_t **a, int key_len, int out_len) {
76 pointer = (uint8_t*)crypto_alloc(sizeof(hmac_ctx_t) + sizeof(auth_t));
81 *a = (auth_t *)pointer;
83 (*a)->state = pointer + sizeof(auth_t);
95 hmac_dealloc(auth_t *a) {
100 sizeof(hmac_ctx_t) + sizeof(auth_t));
  /external/tcpdump/
oakley.h 117 u_int8_t auth_t; /* method of authentication */
  /external/srtp/include/
srtp_priv.h 213 * cipher_t and auth_t pointers will point to the same structures
219 auth_t *rtp_auth;
223 auth_t *rtcp_auth;
  /external/srtp/crypto/test/
auth_driver.c 74 auth_bits_per_second(auth_t *h, int msg_len);
87 auth_t *a = NULL;
167 auth_bits_per_second(auth_t *a, int msg_len_octets) {

Completed in 107 milliseconds