diff options
author | teor <teor@torproject.org> | 2019-11-17 00:04:10 +1000 |
---|---|---|
committer | teor <teor@torproject.org> | 2019-11-26 11:00:39 +1000 |
commit | 2a71a58d4ff1a0a55aac68f483be1ce12bb48488 (patch) | |
tree | 08d53bcb87b5024b289d30db909e1a976a7be51e /src/test/ntor_ref.py | |
parent | 31f8b4fa65b446a3ae4ce67051a7f0aabcd22a97 (diff) | |
download | tor-2a71a58d4ff1a0a55aac68f483be1ce12bb48488.tar.gz tor-2a71a58d4ff1a0a55aac68f483be1ce12bb48488.zip |
test: Fix a python double-space
Diffstat (limited to 'src/test/ntor_ref.py')
-rwxr-xr-x | src/test/ntor_ref.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/ntor_ref.py b/src/test/ntor_ref.py index 204f05e2ad..3e642eb257 100755 --- a/src/test/ntor_ref.py +++ b/src/test/ntor_ref.py @@ -99,7 +99,7 @@ else: def int2byte(i): return bytes([i]) -def kdf_rfc5869(key, salt, info, n): +def kdf_rfc5869(key, salt, info, n): prk = HMAC(key=salt, msg=key) |