hc
2024-01-05 071106ecf68c401173c58808b1cf5f68cc50d390
kernel/include/crypto/serpent.h
....@@ -22,7 +22,7 @@
2222 unsigned int keylen);
2323 int serpent_setkey(struct crypto_tfm *tfm, const u8 *key, unsigned int keylen);
2424
25
-void __serpent_encrypt(struct serpent_ctx *ctx, u8 *dst, const u8 *src);
26
-void __serpent_decrypt(struct serpent_ctx *ctx, u8 *dst, const u8 *src);
25
+void __serpent_encrypt(const void *ctx, u8 *dst, const u8 *src);
26
+void __serpent_decrypt(const void *ctx, u8 *dst, const u8 *src);
2727
2828 #endif