ed25519 constant

Key pair type for Ed25519.

Implementation

static const KeyPairType ed25519 =
    KeyPairType<SimpleKeyPairData, SimplePublicKey>._(
  name: 'ed25519',
  ellipticBits: 256,
  privateKeyLength: 32,
  publicKeyLength: 32,
);