Lines Matching refs:uhash_ctx_t
781 typedef struct uhash_ctx *uhash_ctx_t;
829 static void poly_hash(uhash_ctx_t hc, UINT32 data_in[])
885 static void ip_short(uhash_ctx_t ahc, UINT8 *nh_res, u_char *res)
910 static void ip_long(uhash_ctx_t ahc, u_char *res)
931 static int uhash_reset(uhash_ctx_t pc)
955 static void uhash_init(uhash_ctx_t ahc, aes_int_key prf_key)
1000 static uhash_ctx_t uhash_alloc(u_char key[])
1003 uhash_ctx_t ctx;
1007 ctx = (uhash_ctx_t)malloc(sizeof(uhash_ctx)+ALLOC_BOUNDARY);
1012 ctx = (uhash_ctx_t)((u_char *)ctx + bytes_to_add);
1025 static int uhash_free(uhash_ctx_t ctx)
1033 ctx = (uhash_ctx_t)((u_char *)ctx - bytes_to_sub);
1042 static int uhash_update(uhash_ctx_t ctx, u_char *input, long len)
1098 static int uhash_final(uhash_ctx_t ctx, u_char *res)
1121 static int uhash(uhash_ctx_t ahc, u_char *msg, long len, u_char *res)