newSignatureWandFromSeed method

Future<SignatureWand> newSignatureWandFromSeed(
  1. List<int> seed
)

Generates a new SignatureWand that uses the given seed bytes.

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

Implementation

Future<SignatureWand> newSignatureWandFromSeed(List<int> seed) async {
  final keyPair = await newKeyPairFromSeed(seed);
  return newSignatureWandFromKeyPair(keyPair);
}