@archastro/sdk
    Preparing search index...

    Interface UserSSHKey

    Metadata for a registered SSH public key. Key material is never returned.

    interface UserSSHKey {
        algorithm: string;
        created_at: string;
        fingerprint: string;
        id: string;
        label: string;
        revoked_at?: string | null;
    }
    Index

    Properties

    algorithm: string

    SSH algorithm. V1 accepts ssh-ed25519.

    created_at: string

    Registration time.

    fingerprint: string

    OpenSSH SHA-256 fingerprint.

    id: string

    Registered SSH key ID (ssk_...).

    label: string

    User-visible label for the key.

    revoked_at?: string | null

    Revocation time, or null while active.