Symbol: uhash_ctx_t
crypto/openssh/umac.c
1005
static uhash_ctx_t uhash_alloc(u_char key[])
crypto/openssh/umac.c
1008
uhash_ctx_t ctx;
crypto/openssh/umac.c
1012
ctx = (uhash_ctx_t)malloc(sizeof(uhash_ctx)+ALLOC_BOUNDARY);
crypto/openssh/umac.c
1017
ctx = (uhash_ctx_t)((u_char *)ctx + bytes_to_add);
crypto/openssh/umac.c
1030
static int uhash_free(uhash_ctx_t ctx)
crypto/openssh/umac.c
1038
ctx = (uhash_ctx_t)((u_char *)ctx - bytes_to_sub);
crypto/openssh/umac.c
1047
static int uhash_update(uhash_ctx_t ctx, const u_char *input, long len)
crypto/openssh/umac.c
1103
static int uhash_final(uhash_ctx_t ctx, u_char *res)
crypto/openssh/umac.c
1126
static int uhash(uhash_ctx_t ahc, u_char *msg, long len, u_char *res)
crypto/openssh/umac.c
833
static void poly_hash(uhash_ctx_t hc, UINT32 data_in[])
crypto/openssh/umac.c
889
static void ip_short(uhash_ctx_t ahc, UINT8 *nh_res, u_char *res)
crypto/openssh/umac.c
914
static void ip_long(uhash_ctx_t ahc, u_char *res)
crypto/openssh/umac.c
935
static int uhash_reset(uhash_ctx_t pc)
crypto/openssh/umac.c
959
static void uhash_init(uhash_ctx_t ahc, aes_int_key prf_key)
crypto/openssh/umac.h
100
int uhash_set_params(uhash_ctx_t ctx,
crypto/openssh/umac.h
103
int uhash_reset(uhash_ctx_t ctx);
crypto/openssh/umac.h
105
int uhash_update(uhash_ctx_t ctx,
crypto/openssh/umac.h
109
int uhash_final(uhash_ctx_t ctx,
crypto/openssh/umac.h
112
int uhash(uhash_ctx_t ctx,
crypto/openssh/umac.h
91
uhash_ctx_t uhash_alloc(u_char key[16]);
crypto/openssh/umac.h
98
int uhash_free(uhash_ctx_t ctx);