newKeyPairFromSeed method

Future<KeyPair> newKeyPairFromSeed(
  1. List<int> seed
)

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

Future<KeyPair> newKeyPairFromSeed(List<int> seed) {
  throw UnsupportedError(
    'newKeyPairFromSeed() is unsupported by this algorithm',
  );
}