1
0
mirror of https://blitiri.com.ar/repos/chasquid synced 2025-12-18 14:47:03 +00:00

tlsconst: Update TLS cipher suites, and include TLS 1.3

This patch updates the list of known TLS cipher suites, and adds TLS 1.3
to the list of known versions (it will be included in Go 1.12).
This commit is contained in:
Alberto Bertogli
2018-11-22 01:40:06 +00:00
parent d0c7c3d40a
commit 328008061d
2 changed files with 14 additions and 0 deletions

View File

@@ -11,6 +11,7 @@ var versionName = map[uint16]string{
0x0301: "TLS-1.0",
0x0302: "TLS-1.1",
0x0303: "TLS-1.2",
0x0304: "TLS-1.3",
}
// VersionName returns a human-readable TLS version name.