getFactory static method

PrivateKeyFactory? getFactory(
  1. String algorithm
)

Implementation

static PrivateKeyFactory? getFactory(String algorithm) {
  var helper = sharedCryptoExtensions.privateHelper;
  return helper!.getPrivateKeyFactory(algorithm);
}