getFactory static method

PublicKeyFactory? getFactory(
  1. String algorithm
)

Implementation

static PublicKeyFactory? getFactory(String algorithm) {
  var helper = sharedCryptoExtensions.publicHelper;
  return helper!.getPublicKeyFactory(algorithm);
}