瀏覽代碼

get_mozilla_ciphers: output lowercase hex.

Nick Mathewson 13 年之前
父節點
當前提交
c2ed9a2940
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/common/get_mozilla_ciphers.py

+ 1 - 1
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()]