JavaScript HSM API Dinamo
    Preparing search index...
    interface Hsm {
        connecting: boolean;
        connected: boolean;
        operationMode: string;
        key: Key;
        blockchain: Blockchain;
        cryptography: Cryptography;
        user: User;
        ocra: Ocra;
        management: Management;
        disconnect(): Promise<boolean>;
    }
    Index

    Properties

    connecting: boolean

    Indicates whether the client is connecting to the HSM.

    false
    
    connected: boolean

    Indicates whether the client is connected to the HSM.

    false
    
    operationMode: string

    Indicates the HSM's operating mode.

    "NRM"
    
    key: Key

    Object for manipulating keys.

    blockchain: Blockchain

    Object for manipulating Bip32 keys.

    cryptography: Cryptography

    Object for manipulating cryptography.

    user: User

    Object for user manipulation.

    ocra: Ocra

    Object for handling OCRA.

    management: Management

    Object for management manipulation.

    Methods

    • Ends the connection with the HSM.

      Returns Promise<boolean>

      • Returns true if the connection was successfully terminated.
      • Throws an exception if the client is not connected to the HSM.