generateEd25519KeyPair static method

Future<SimpleKeyPair> generateEd25519KeyPair()

Generates an symmetric keypair for ED25519 elliptic curve signing and verification

Implementation

static Future<SimpleKeyPair> generateEd25519KeyPair() async {
  return await Ed25519().newKeyPair();
}