gitlab.com/go-extension/tls@v0.0.0-20240304171319-e6745021905e/README.md (about)

     1  # Transport Layer Security (TLS)
     2  
     3  This repository is an extension of the golang standard library [crypto/go](https://pkg.go.dev/crypto/go)
     4  
     5  # Currently implements more TLS functions than the standard library
     6  
     7  - AES CCM cipher
     8  - ARIA cipher
     9  - CEMALLIA cipher
    10  - Kernel TLS
    11  - TLS 1.3 0RTT (Early Data)
    12  - Compressed certificate
    13  - Application-Layer Protocol Settings (ALPS)
    14  - GREASE
    15  - Encrypted Client Hello (ECH)
    16  - Custom cipher suites order
    17  - Custom cipher suites in tls 1.3
    18  - Custom supported version list
    19  - Custom extension
    20  
    21  # Special thanks
    22  
    23  - [uTLS](https://github.com/refraction-networking/utls)
    24  - [Cloudflare tls-tris](https://github.com/cloudflare/tls-tris)
    25  - [Cloudflare go](https://github.com/cloudflare/go/blob/cf)
    26  - [goktls](https://github.com/secure-for-ai/goktls/)