Home | History | Annotate | Download | only in openssh

Lines Matching refs:umac_ctx

1179 struct umac_ctx {
1183 } umac_ctx;
1188 int umac_reset(struct umac_ctx *ctx)
1198 int umac_delete(struct umac_ctx *ctx)
1203 ctx = (struct umac_ctx *)ctx->free_ptr;
1211 struct umac_ctx *umac_new(u_char key[])
1212 /* Dynamically allocate a umac_ctx struct, initialize variables,
1216 struct umac_ctx *ctx, *octx;
1225 ctx = (struct umac_ctx *)((u_char *)ctx + bytes_to_add);
1238 int umac_final(struct umac_ctx *ctx, u_char tag[], u_char nonce[8])
1249 int umac_update(struct umac_ctx *ctx, u_char *input, long len)
1261 int umac(struct umac_ctx *ctx, u_char *input,