From: teor Date: Sat, 16 Nov 2019 14:04:10 +0000 (+1000) Subject: test: Fix a python double-space X-Git-Tag: tor-0.4.3.1-alpha~111 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2a71a58d4ff1a0a55aac68f483be1ce12bb48488;p=thirdparty%2Ftor.git test: Fix a python double-space --- 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)