convertPKCS12ToKeyPair static method

Future<PKCS12KeyPair> convertPKCS12ToKeyPair(
  1. String pkcs12,
  2. String password
)

Implementation

static Future<PKCS12KeyPair> convertPKCS12ToKeyPair(
    String pkcs12, String password) async {
  var requestBuilder = model.ConvertPkcs12RequestObjectBuilder(
    password: password,
    pkcs12: pkcs12,
  );

  return RSABridge.call("convertPKCS12ToKeyPair", requestBuilder.toBytes())
      .then(RSAResponseHandlers.pkcs12KeyPairResponse);
}