edgeport - v1.0.3
    Preparing search index...

    Interface ExchangeHashInputs

    The ordered inputs to the ECDH exchange hash.

    interface ExchangeHashInputs {
        hostKey: Uint8Array;
        iClient: Uint8Array;
        iServer: Uint8Array;
        qClient: Uint8Array;
        qServer: Uint8Array;
        sharedSecret: Uint8Array;
        vClient: Uint8Array;
        vServer: Uint8Array;
    }
    Index
    hostKey: Uint8Array

    Server host key blob (K_S).

    iClient: Uint8Array

    Client SSH_MSG_KEXINIT payload.

    iServer: Uint8Array

    Server SSH_MSG_KEXINIT payload.

    qClient: Uint8Array

    Client ephemeral public key (Q_C).

    qServer: Uint8Array

    Server ephemeral public key (Q_S).

    sharedSecret: Uint8Array

    Shared secret K as an unsigned big-endian magnitude.

    vClient: Uint8Array

    Client identification string (no CRLF).

    vServer: Uint8Array

    Server identification string (no CRLF).