decryptPrivateKey static method
Implementation
static Future<String> decryptPrivateKey(
String privateKeyEncrypted, String password) async {
var requestBuilder = model.DecryptPrivateKeyRequestObjectBuilder(
privateKeyEncrypted: privateKeyEncrypted,
password: password,
);
return RSABridge.call("decryptPrivateKey", requestBuilder.toBytes())
.then(RSAResponseHandlers.stringResponse);
}