Lines Matching refs:names
21 Translate standard ciphersuite names to GnuTLS, OpenSSL and Mbed TLS standards.
33 Ensure translate_ciphers.py translates and formats ciphersuite names
38 Translate standard ciphersuite names to GnuTLS, OpenSSL and
97 # Replace "_" with "-" to handle ciphersuite names based on Mbed TLS
129 # Replace "_" with "-" to handle ciphersuite names based on Mbed TLS
177 def format_ciphersuite_names(mode, names):
182 return " ".join(c + '=' + t(c) for c in names)
184 def main(target, names):
185 print(format_ciphersuite_names(target, names))
190 PARSER.add_argument('names', metavar='NAMES', nargs='+')
192 main(ARGS.target, ARGS.names)