summaryrefslogtreecommitdiff
path: root/cipher/rijndael-padlock.c
diff options
context:
space:
mode:
Diffstat (limited to 'cipher/rijndael-padlock.c')
-rw-r--r--cipher/rijndael-padlock.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/cipher/rijndael-padlock.c b/cipher/rijndael-padlock.c
index 234751b9..3af214d7 100644
--- a/cipher/rijndael-padlock.c
+++ b/cipher/rijndael-padlock.c
@@ -101,4 +101,10 @@ _gcry_aes_padlock_decrypt (const RIJNDAEL_context *ctx,
return do_padlock(ctx, bx, ax, 1);
}
+void
+_gcry_aes_padlock_prepare_decryption (RIJNDAEL_context *ctx)
+{
+ /* Padlock does not need decryption subkeys. */
+ (void)ctx;
+}
#endif /* USE_PADLOCK */