hcrudolph/ciphersuite.info

Missing openssl_name value for TLS_CHACHA20_POLY1305_SHA256

MatzFan opened this issue · 1 comments

Just started using your excellent API and noticed the above omission at https://ciphersuite.info/api/cs/TLS_CHACHA20_POLY1305_SHA256. I believe the openssl_name value ought to be the same as the IANA name key. The json given by the API is as follows:-

{

    "TLS_CHACHA20_POLY1305_SHA256": {
        "gnutls_name": "",
        "openssl_name": "",
        "hex_byte_1": "0x13",
        "hex_byte_2": "0x03",
        "protocol_version": "TLS",
        "kex_algorithm": "-",
        "auth_algorithm": "-",
        "enc_algorithm": "CHACHA20 POLY1305",
        "hash_algorithm": "SHA256",
        "security": "recommended",
        "tls_version": [
            "TLS1.3"
        ]
    }

}

openssl ciphers|grep TLS_CHACHA20_POLY1305_SHA256 on my machine highlights this name (openssl 1.1.1f).

I also note the 2nd hex byte seems to be incorrectly recorded here as 0xC3 - an OCR scan error?

Thanks for reporting this issue! This should be fixed with the above commit, and find its way into production in the next couple of days.