summaryrefslogtreecommitdiff
path: root/sys/opencrypto/cryptodev.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/opencrypto/cryptodev.h')
-rw-r--r--sys/opencrypto/cryptodev.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/opencrypto/cryptodev.h b/sys/opencrypto/cryptodev.h
index de85fff925a..999aa03b28c 100644
--- a/sys/opencrypto/cryptodev.h
+++ b/sys/opencrypto/cryptodev.h
@@ -683,9 +683,9 @@ SYSCTL_DECL(_kern_crypto);
/* Helper routines for drivers to initialize auth contexts for HMAC. */
struct auth_hash;
-void hmac_init_ipad(struct auth_hash *axf, const char *key, int klen,
+void hmac_init_ipad(const struct auth_hash *axf, const char *key, int klen,
void *auth_ctx);
-void hmac_init_opad(struct auth_hash *axf, const char *key, int klen,
+void hmac_init_opad(const struct auth_hash *axf, const char *key, int klen,
void *auth_ctx);
/*