mkcipherlist.py: Update doc

This commit is contained in:
Tatsuhiro Tsujikawa 2014-10-25 00:46:01 +09:00
parent 98fd6019cf
commit b4ed3324c0
1 changed files with 10 additions and 0 deletions

View File

@ -1,4 +1,14 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# This script read cipher suite list csv file [1] and prints out ECDHE
# or DHE with AEAD ciphers only. The output is used by
# src/shrpx_ssl.cc.
#
# [1] http://www.iana.org/assignments/tls-parameters/tls-parameters-4.csv
# [2] http://www.iana.org/assignments/tls-parameters/tls-parameters.xhtml
from __future__ import unicode_literals
import re
import sys
import csv