aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/app.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/app.js b/lib/app.js
index 2ded278..ed936ec 100644
--- a/lib/app.js
+++ b/lib/app.js
@@ -111,7 +111,6 @@ App.prototype.unboxContentWithKey = function (content, key, cb) {
try {
var contentBuf = new Buffer(content.replace(/\.box.*$/, ''), 'base64')
var keyBuf = new Buffer(key, 'base64')
- console.error(key, keyBuf.length)
data = PrivateBox.multibox_open_body(contentBuf, keyBuf)
if (!data) return cb(new Error('failed to decrypt'))
data = JSON.parse(data.toString('utf8'))