commit 2a71a58d4ff1a0a55aac68f483be1ce12bb48488 parent 31f8b4fa65b446a3ae4ce67051a7f0aabcd22a97 Author: teor <teor@torproject.org> Date: Sun, 17 Nov 2019 00:04:10 +1000 test: Fix a python double-space Diffstat:
| M | src/test/ntor_ref.py | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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)