Variable CLIENT_ALGORITHMSConst
CLIENT_ALGORITHMS: {
cipher: readonly [
"aes256-gcm@openssh.com",
"aes128-gcm@openssh.com",
"chacha20-poly1305@openssh.com",
"aes256-ctr",
"aes128-ctr",
];
compression: readonly ["none"];
hostKey: readonly [
"ssh-ed25519",
"ecdsa-sha2-nistp256",
"rsa-sha2-512",
"rsa-sha2-256",
];
kex: readonly [
"curve25519-sha256",
"curve25519-sha256@libssh.org",
"ecdh-sha2-nistp256",
];
mac: readonly ["hmac-sha2-256", "hmac-sha2-512"];
} = ...
Type Declaration
-
Readonlycipher: readonly [
"aes256-gcm@openssh.com",
"aes128-gcm@openssh.com",
"chacha20-poly1305@openssh.com",
"aes256-ctr",
"aes128-ctr",
]
-
Readonlycompression: readonly ["none"]
-
ReadonlyhostKey: readonly ["ssh-ed25519", "ecdsa-sha2-nistp256", "rsa-sha2-512", "rsa-sha2-256"]
-
Readonlykex: readonly [
"curve25519-sha256",
"curve25519-sha256@libssh.org",
"ecdh-sha2-nistp256",
]
-
Readonlymac: readonly ["hmac-sha2-256", "hmac-sha2-512"]
Our supported algorithms, in client preference order.