We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
QUIC embeds the TLS 1.3 handshake protocol for improved security and fewer round-trips
RFCs:
Implementations:
supported_versions
cookie
signture_algorithms
signature_algorithms_cert
supported_groups
key_share
sever_name
application_layer_protocol_negotiation
certificate_authorities
psk_key_exchange_modes
TLS_AES_128_GCM_SHA256
TLS_AES_256_GCM_SHA384
TLS_CHACHA20_POLY1305_SHA256
rsa_pkcs1_sha256
rsa_pss_rsae_sha256
ecdsa_secp256r1_sha256
secp256r1
x25519
In order to actually implement TLS we need to have a cryptography library. The following could be used
However, I'm currently working on porting Bouncycastle to Kotlin for Multiplatform cryptography.
Note: this todo list is a work in progress, I still need to fully research what I need for a working implementation
The text was updated successfully, but these errors were encountered:
viztea
No branches or pull requests
QUIC embeds the TLS 1.3 handshake protocol for improved security and fewer round-trips
Resources
RFCs:
Implementations:
TODO:
supported_versions
cookie
signture_algorithms
signature_algorithms_cert
supported_groups
key_share
sever_name
application_layer_protocol_negotiation
certificate_authorities
psk_key_exchange_modes
TLS_AES_128_GCM_SHA256
TLS_AES_256_GCM_SHA384
TLS_CHACHA20_POLY1305_SHA256
rsa_pkcs1_sha256
(must for certificates)rsa_pss_rsae_sha256
(must for certificates and CertificateVerify)ecdsa_secp256r1_sha256
secp256r1
x25519
In order to actually implement TLS we need to have a cryptography library. The following could be used
However, I'm currently working on porting Bouncycastle to Kotlin for Multiplatform cryptography.
Note: this todo list is a work in progress, I still need to fully research what I need for a working implementation
The text was updated successfully, but these errors were encountered: