DartEcdsa.p256 constructor

DartEcdsa.p256(
  1. HashAlgorithm hashAlgorithm, {
  2. Random? random,
})

Implementation

DartEcdsa.p256(
  HashAlgorithm hashAlgorithm, {
  Random? random,
}) : this._(
        KeyPairType.p256,
        hashAlgorithm,
        random: random,
      );