diff options
author | Nick Mathewson <nickm@torproject.org> | 2019-01-22 08:04:52 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2019-01-22 08:04:52 -0500 |
commit | 9ce1978b5ea630bca699eb1cf7f3f1c178f8e939 (patch) | |
tree | 01f9d014eeda9366207d170b79b7b608c32dc204 | |
parent | a8580a683696eb76f5f24fe36e7ea61f9c49db0a (diff) | |
parent | 7c6a8c674bd563bf4b33e05a7267a5ec74b79170 (diff) | |
download | tor-9ce1978b5ea630bca699eb1cf7f3f1c178f8e939.tar.gz tor-9ce1978b5ea630bca699eb1cf7f3f1c178f8e939.zip |
Merge branch 'bug28979_035' into maint-0.3.5
-rw-r--r-- | changes/bug28979 | 4 | ||||
-rw-r--r-- | doc/tor.1.txt | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/changes/bug28979 b/changes/bug28979 new file mode 100644 index 0000000000..0625fd5d25 --- /dev/null +++ b/changes/bug28979 @@ -0,0 +1,4 @@ + o Minor bugfixes (documentation): + - Describe the contents of the v3 onion service client authorization + files correctly: They hold public keys, not private keys. Fixes bug + 28979; bugfix on 0.3.5.1-alpha. Spotted by "Felixix". diff --git a/doc/tor.1.txt b/doc/tor.1.txt index 581783dd65..573fdf221a 100644 --- a/doc/tor.1.txt +++ b/doc/tor.1.txt @@ -2950,8 +2950,8 @@ file name is irrelevant) and its content format MUST be: <auth-type>:<key-type>:<base32-encoded-public-key> The supported <auth-type> are: "descriptor". The supported <key-type> are: -"x25519". The <base32-encoded-privkey> is the base32 representation of the raw -key bytes only (32 bytes for x25519). +"x25519". The <base32-encoded-public-key> is the base32 representation of +the raw key bytes only (32 bytes for x25519). Each file MUST contain one line only. Any malformed file will be ignored. Client authorization will only be enabled for the service if tor |