convertPrivateKeyToPKCS1 static method
Implementation
static Future<String> convertPrivateKeyToPKCS1(String privateKey) async {
var request = ConvertPrivateKeyRequest()..privateKey = privateKey;
return await _stringResponse(
"convertPrivateKeyToPKCS1", request.writeToBuffer());
}