From 5567c48cce3c6daa657befc509e65e57c34089e8 Mon Sep 17 00:00:00 2001 From: acetone <63557806+acetoneRu@users.noreply.github.com> Date: Mon, 17 May 2021 02:33:56 -0400 Subject: [PATCH] Corrected signature type names like this: https://github.com/PurpleI2P/i2pd-tools/blob/master/common/key.hpp#L11 --- docs/user-guide/tunnels.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/docs/user-guide/tunnels.md b/docs/user-guide/tunnels.md index a19dc55..3789277 100644 --- a/docs/user-guide/tunnels.md +++ b/docs/user-guide/tunnels.md @@ -36,18 +36,18 @@ Available signature types: Type | Code | Comment ------------------------------------ | ---- | ----------- -DSA_SHA1 | 0 | Deprecated -ECDSA_SHA256_P256 | 1 | *None, actively used* -ECDSA_SHA384_P384 | 2 | *None, actively used* -ECDSA_SHA512_P521 | 3 | *None, actively used* -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 keys blinding (encrypted LeaseSet) +DSA-SHA1 | 0 | Deprecated +ECDSA-P256 | 1 | *None, actively used* +ECDSA-P384 | 2 | *None, actively used* +ECDSA-P521 | 3 | *None, actively used* +RSA-2048-SHA256 | 4 | Deprecated +RSA-3072-SHA384 | 5 | Deprecated +RSA-4096-SHA512 | 6 | Deprecated +ED25519-SHA512 | 7 | **Default** +*ED25519ph-SHA512* | 8 | Not implemented +GOSTR3410-A-GOSTR3411-256 | 9 | Not compatible with Java router +GOSTR3410-TC26-A-GOSTR3411-512 | 10 | Not compatible with Java router +RED25519-SHA512 | 11 | For keys blinding (encrypted LeaseSet) LeaseSet ------------