From: Nick Mathewson Date: Wed, 14 Mar 2012 22:19:21 +0000 (-0400) Subject: get_mozilla_ciphers: output lowercase hex. X-Git-Tag: tor-0.2.3.17-beta~20^2~3 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c2ed9a2940fa33bad94efa26fac9b45446731b67;p=thirdparty%2Ftor.git get_mozilla_ciphers: output lowercase hex. --- diff --git a/src/common/get_mozilla_ciphers.py b/src/common/get_mozilla_ciphers.py index 629b4dc58f..61e8c4d90d 100644 --- a/src/common/get_mozilla_ciphers.py +++ b/src/common/get_mozilla_ciphers.py @@ -171,7 +171,7 @@ for firefox_macro in firefox_ciphers: if enabled_ciphers.get(js_cipher_name, 'false') != 'true': continue - hexval = sslProtoD[firefox_macro] + hexval = sslProtoD[firefox_macro].lower() try: openssl_macro = openssl_macro_by_hex[hexval.lower()]