]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
get_mozilla_ciphers: output lowercase hex.
authorNick Mathewson <nickm@torproject.org>
Wed, 14 Mar 2012 22:19:21 +0000 (18:19 -0400)
committerNick Mathewson <nickm@torproject.org>
Wed, 14 Mar 2012 22:19:21 +0000 (18:19 -0400)
src/common/get_mozilla_ciphers.py

index 629b4dc58f75633338af813db76bd324cdfb719c..61e8c4d90dcb44042a4ffb64f62af9343c97a953 100644 (file)
@@ -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()]