encryptPrivateKey static method
Implementation
static Future<String> encryptPrivateKey(
String privateKey, String password, PEMCipher cipher) async {
var request = EncryptPrivateKeyRequest()
..privateKey = privateKey
..password = password
..cipher = cipher;
return await _stringResponse("encryptPrivateKey", request.writeToBuffer());
}