1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-11-27 12:36:14 +01:00
This commit is contained in:
Kyle Spearrin 2017-06-19 10:23:50 -04:00
parent 9a7dac706c
commit cddabebe86

View File

@ -349,7 +349,7 @@ angular
_service.rsaEncryptMe = function (plainValue) { _service.rsaEncryptMe = function (plainValue) {
return _service.rsaEncrypt(plainValue, _service.getPublicKey(), _service.getEncKey()); return _service.rsaEncrypt(plainValue, _service.getPublicKey(), _service.getEncKey());
} };
_service.decrypt = function (encValue, key, outputEncoding) { _service.decrypt = function (encValue, key, outputEncoding) {
key = key || _service.getEncKey() || _service.getKey(); key = key || _service.getEncKey() || _service.getKey();