Blockchain Commons Components TypeScript Library - v1.0.0-alpha.13
    Preparing search index...

    Interface PrivateKeyDataProvider

    Interface for types that can provide unique data for cryptographic key derivation.

    The provided data should be sufficiently random and have enough entropy to serve as the basis for secure cryptographic key derivation.

    interface PrivateKeyDataProvider {
        privateKeyData(): Uint8Array;
    }

    Implemented by

    Index

    Methods

    • Returns unique data from which cryptographic keys can be derived.

      The returned data should be sufficiently random and have enough entropy to serve as the basis for secure cryptographic key derivation.

      Returns Uint8Array

      A Uint8Array containing the private key data.