Ed25519KeyIdentity constructor

Ed25519KeyIdentity(
  1. PublicKey publicKey,
  2. BinaryBlob _seed
)

Ed25519PublicKey.fromRaw and Ed25519PublicKey.fromDer should not be used for instantiation in this constructor.

Implementation

Ed25519KeyIdentity(
  auth.PublicKey publicKey,
  this._seed,
) : _publicKey = Ed25519PublicKey.from(publicKey);