convertPrivateKeyToPKCS1 static method

Future<String> convertPrivateKeyToPKCS1(
  1. String privateKey
)

Implementation

static Future<String> convertPrivateKeyToPKCS1(String privateKey) async {
  var request = ConvertPrivateKeyRequest()..privateKey = privateKey;

  return await _stringResponse(
      "convertPrivateKeyToPKCS1", request.writeToBuffer());
}