summaryrefslogtreecommitdiff
path: root/src/common/get_mozilla_ciphers.py
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2012-03-14 18:19:21 -0400
committerNick Mathewson <nickm@torproject.org>2012-03-14 18:19:21 -0400
commitc2ed9a2940fa33bad94efa26fac9b45446731b67 (patch)
tree93f83eedfad07d13f215e50ae138605655aa9e5b /src/common/get_mozilla_ciphers.py
parentc5dca8f20886f797d079e6de1547dd2e42a9b222 (diff)
downloadtor-c2ed9a2940fa33bad94efa26fac9b45446731b67.tar.gz
tor-c2ed9a2940fa33bad94efa26fac9b45446731b67.zip
get_mozilla_ciphers: output lowercase hex.
Diffstat (limited to 'src/common/get_mozilla_ciphers.py')
-rw-r--r--src/common/get_mozilla_ciphers.py2
1 files changed, 1 insertions, 1 deletions
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()]