@blockchaincommons/components - v1.0.0-beta.4
    Preparing search index...

    Interface SshSignatureParts

    The parts of an sshsig signature verifySshSignature needs.

    interface SshSignatureParts {
        publicKey: SSHPublicKey;
        namespace: string;
        hashAlgorithm: "sha256" | "sha512";
        signatureAlgorithm: string;
        signatureBytes: Uint8Array;
    }
    Index
    publicKey: SSHPublicKey

    The key embedded in the signature.

    namespace: string

    The namespace the signature was made in.

    hashAlgorithm: "sha256" | "sha512"

    The hash the message was digested with.

    signatureAlgorithm: string

    The algorithm name inside the signature blob (rsa-sha2-256, ssh-ed25519, …).

    signatureBytes: Uint8Array

    The raw algorithm-specific signature bytes.