interface SSHKey {
    agentSupport?: boolean;
    filename: string;
    fingerprint: string;
    isPrivate?: boolean;
    parsedKey: ParsedKey;
}

Properties

agentSupport?: boolean
filename: string
fingerprint: string
isPrivate?: boolean
parsedKey: ParsedKey