summaryrefslogtreecommitdiff
path: root/src/backend.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend.lisp')
-rw-r--r--src/backend.lisp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/backend.lisp b/src/backend.lisp
index 5568132..8d1405b 100644
--- a/src/backend.lisp
+++ b/src/backend.lisp
@@ -41,7 +41,7 @@ protect the data from attacks against convergent encryption."))
(with-slots (fetch-function) backend
(eris-decode read-capability fetch-function)))
-(defmethod store-data (input (backend encoding-backend) &key (secret null-secret) (hash-output nil) &allow-other-keys)
+(defmethod store-data (input (backend encoding-backend) &key (secret null-secret) &allow-other-keys)
(declare (type octet-vector secret))
(with-slots (output-function) backend
(eris-encode input ;; According to ERIS spec recommendation.
@@ -52,5 +52,4 @@ protect the data from attacks against convergent encryption."))
32kib
1kib)
output-function
- :hash-output hash-output
:secret secret)))