summaryrefslogtreecommitdiff
path: root/src/ciphers/xsalsa20.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ciphers/xsalsa20.lisp')
-rw-r--r--src/ciphers/xsalsa20.lisp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ciphers/xsalsa20.lisp b/src/ciphers/xsalsa20.lisp
index ef12d10..a75c5cf 100644
--- a/src/ciphers/xsalsa20.lisp
+++ b/src/ciphers/xsalsa20.lisp
@@ -19,6 +19,7 @@
&key (key nil key-p)
(initialization-vector nil iv-p)
&allow-other-keys)
+ (declare (ignore initargs key key-p iv-p))
(let ((state (salsa20-state cipher))
(buffer (make-array 64 :element-type '(unsigned-byte 8))))
(declare (type salsa20-state state)