decryptMessage static method
Implementation
static Uint8List decryptMessage(message, passphrase, salt) {
var keyBytes = Dartez.sodiumUtils.pwhash(passphrase, salt);
return Dartez.sodiumUtils.open(message, keyBytes);
}
static Uint8List decryptMessage(message, passphrase, salt) {
var keyBytes = Dartez.sodiumUtils.pwhash(passphrase, salt);
return Dartez.sodiumUtils.open(message, keyBytes);
}