Polkadot Apps
    Preparing search index...

    Interface DerivedKeypairs

    NaCl encryption + signing keypairs derived from a master key.

    interface DerivedKeypairs {
        encryption: { publicKey: Uint8Array; secretKey: Uint8Array };
        signing: { publicKey: Uint8Array; secretKey: Uint8Array };
    }
    Index

    Properties

    Properties

    encryption: { publicKey: Uint8Array; secretKey: Uint8Array }

    Curve25519 keypair for NaCl Box (asymmetric encryption)

    signing: { publicKey: Uint8Array; secretKey: Uint8Array }

    Ed25519 keypair for NaCl Sign (digital signatures)