SigningKey constructor

SigningKey({
  1. required Uint8List seed,
})

An Ed25519 signingKey is the private key for producing digital signatures using the Ed25519 algorithm. simply the concatenation of the seed and the generated public key from the SHA512-ed and prone-to-buffer-ed seed as a private key.

seed (i.e. private key) is a random 32-byte value.

Implementation

SigningKey({required Uint8List seed}) : this.fromSeed(seed);