newKeyPairFromSeed method

  1. @override
Future<EcKeyPair> newKeyPairFromSeed(
  1. List<int> seed
)
override

Generates a new KeyPair that uses the seed bytes.

This will throw UnsupportedError if the algorithm does not support seeds for private key generation.

Implementation

@override
Future<EcKeyPair> newKeyPairFromSeed(List<int> seed) {
  throw UnimplementedError();
}