[tor-commits] [tor/master] get_mozilla_ciphers: output lowercase hex.
nickm at torproject.org
nickm at torproject.org
Wed Jun 13 16:11:17 UTC 2012
commit c2ed9a2940fa33bad94efa26fac9b45446731b67
Author: Nick Mathewson <nickm at torproject.org>
Date: Wed Mar 14 18:19:21 2012 -0400
get_mozilla_ciphers: output lowercase hex.
---
src/common/get_mozilla_ciphers.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/common/get_mozilla_ciphers.py b/src/common/get_mozilla_ciphers.py
index 629b4dc..61e8c4d 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()]
More information about the tor-commits
mailing list