Clarification of some items.
This commit is contained in:
parent
52b9a206c3
commit
f04417bc39
1 changed files with 2 additions and 2 deletions
|
|
@ -55,7 +55,7 @@ angular.module('copayApp.services').factory('encryptionService', function($log,
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @param {*} str
|
* @param {string, Base64 encoded} str
|
||||||
* @param {CryptoJS.WordArray} key
|
* @param {CryptoJS.WordArray} key
|
||||||
* @param {string, hex} iv
|
* @param {string, hex} iv
|
||||||
*/
|
*/
|
||||||
|
|
@ -89,7 +89,7 @@ angular.module('copayApp.services').factory('encryptionService', function($log,
|
||||||
$log.debug('ciphertext: ' + ciphertext);
|
$log.debug('ciphertext: ' + ciphertext);
|
||||||
$log.debug('iv: ' + iv);
|
$log.debug('iv: ' + iv);
|
||||||
|
|
||||||
|
// Just for testing - do we get back what we put in?
|
||||||
root.decrypt(ciphertext, {iv: iv}, function onDecryptionTest(err, decrypted){
|
root.decrypt(ciphertext, {iv: iv}, function onDecryptionTest(err, decrypted){
|
||||||
if (err) {
|
if (err) {
|
||||||
$log.error('Failed to decrypt encrypted.', err);
|
$log.error('Failed to decrypt encrypted.', err);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue