mirror of
https://github.com/openssh/libopenssh
synced 2026-04-16 09:45:53 +00:00
umac128_update() now takes a const input
This commit is contained in:
@@ -118,7 +118,7 @@ int uhash(uhash_ctx_t ctx,
|
||||
|
||||
/* matching umac-128 API, we reuse umac_ctx, since it's opaque */
|
||||
struct umac_ctx *umac128_new(u_char key[]);
|
||||
int umac128_update(struct umac_ctx *ctx, u_char *input, long len);
|
||||
int umac128_update(struct umac_ctx *ctx, const u_char *input, long len);
|
||||
int umac128_final(struct umac_ctx *ctx, u_char tag[], u_char nonce[8]);
|
||||
int umac128_delete(struct umac_ctx *ctx);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user