Ed25519 Keypair data. The publickey is the 32-byte public key and the secretkey is 64-byte, where the first 32 bytes is the secret key and the last 32 bytes is the public key.

interface Ed25519KeypairData {
    publicKey: Uint8Array;
    secretKey: Uint8Array;
}

Properties

Properties

publicKey: Uint8Array
secretKey: Uint8Array