Remove debug
This commit is contained in:
parent
5592a8d376
commit
cfcca0d782
|
@ -20,7 +20,6 @@ export default class Security {
|
|||
|
||||
static decrypt(key, content, prefix = '') {
|
||||
if (key instanceof Array || content instanceof Array) {
|
||||
console.log('deep decrypting');
|
||||
return this.deepDecrypt(key, content, prefix);
|
||||
}
|
||||
return aes256.decrypt(key, content.replace(prefix, ''));
|
||||
|
|
Loading…
Reference in New Issue