Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Mike Perry
Tor
Commits
0dd48bfe
Commit
0dd48bfe
authored
Dec 13, 2016
by
Nick Mathewson
👁
Browse files
Change the default of AuthDirPinKeys to 1.
Closes ticket 18319.
parent
bd2a1d02
Changes
3
Hide whitespace changes
Inline
Side-by-side
changes/ticket18319
0 → 100644
View file @
0dd48bfe
o Minor features (directory authority, security):
- The default for AuthDirPinKeys is now 1: directory authorities will
reject relays where the RSA identity key matches a previously seen
value, but the Ed25519 key has changed. Closes ticket 18319.
doc/tor.1.txt
View file @
0dd48bfe
...
...
@@ -2265,7 +2265,7 @@ on the public Tor network.
publish a descriptor if any other relay has reserved its <Ed25519,RSA>
identity keypair. In all cases, Tor records every keypair it accepts
in a journal if it is new, or if it differs from the most recently
accepted pinning for one of the keys it contains. (Default:
0
)
accepted pinning for one of the keys it contains. (Default:
1
)
[[AuthDirSharedRandomness]] **AuthDirSharedRandomness** **0**|**1**::
Authoritative directories only. Switch for the shared random protocol.
...
...
src/or/config.c
View file @
0dd48bfe
...
...
@@ -211,7 +211,7 @@ static config_var_t option_vars_[] = {
V
(
AuthDirInvalidCCs
,
CSV
,
""
),
V
(
AuthDirFastGuarantee
,
MEMUNIT
,
"100 KB"
),
V
(
AuthDirGuardBWGuarantee
,
MEMUNIT
,
"2 MB"
),
V
(
AuthDirPinKeys
,
BOOL
,
"
0
"
),
V
(
AuthDirPinKeys
,
BOOL
,
"
1
"
),
V
(
AuthDirReject
,
LINELIST
,
NULL
),
V
(
AuthDirRejectCCs
,
CSV
,
""
),
OBSOLETE
(
"AuthDirRejectUnlisted"
),
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment