Holds a key which can either be interactive or non-interactive

interface KeyStore {
    id: Buffer;
    isInteractive: boolean;
    createKeyHandler(authDescriptor): KeyHandler;
}

Hierarchy (view full)

Properties

id: Buffer
isInteractive: boolean

Methods

  • Creates a KeyHandler instance from this KeyStore instance

    Parameters

    Returns KeyHandler