From e6be3b733b218e76421328f1533af92e6c60a620 Mon Sep 17 00:00:00 2001 From: acetone <63557806+acetoneRu@users.noreply.github.com> Date: Fri, 30 Apr 2021 11:58:51 -0400 Subject: [PATCH] signature types --- docs/user-guide/tunnels.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/docs/user-guide/tunnels.md b/docs/user-guide/tunnels.md index 0f41ccd..5101d31 100644 --- a/docs/user-guide/tunnels.md +++ b/docs/user-guide/tunnels.md @@ -27,6 +27,28 @@ udpserver | Forwards traffic from N I2P destinations to local UDP endpoint socks | Custom Socks proxy service to use I2P with httpproxy | Custom HTTP proxy service to use I2P with +Signature types +------------ + +Parameter `signaturetype = ` in a tunnel config. + +Available signature types: + +Type | Code | Notes +------------------------------------ | ---- | ----------- +DSA_SHA1 | 0 | Deprecated +ECDSA_SHA256_P256 | 1 | +ECDSA_SHA384_P384 | 2 | +ECDSA_SHA512_P521 | 3 | +RSA_SHA256_2048 | 4 | Deprecated +RSA_SHA384_3072 | 5 | Deprecated +RSA_SHA512_4096 | 6 | Deprecated +EDDSA_SHA512_ED25519 | 7 | **Default** +*EDDSA_SHA512_ED25519ph* | 8 | *Not implemented* +GOSTR3410_CRYPTO_PRO_A_GOSTR3411_256 | 9 | Not compatible with Java router +GOSTR3410_TC26_A_512_GOSTR3411_512 | 10 | Not compatible with Java router +REDDSA_SHA512_ED25519 | 11 | For LeaseSet2 only + Client tunnels --------------