mirror of
https://github.com/sigoden/dufs.git
synced 2026-04-08 16:49:02 +03:00
[GH-ISSUE #376] post quantum support of rustls #199
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @hsqStephenZhang on GitHub (Apr 22, 2024).
Original GitHub issue: https://github.com/sigoden/dufs/issues/376
Specific Demand
Can we add support of post quantum cryptography?
rustlshas the official support of this with rustls-post-quantum, and chrome has support of post-quantum algorithms since v116.Implement Suggestion
all we need to do is to add one lien of code of installing the default algorithm of
X25519Kyber768Draft00:rustls_post_quantum::provider().install_default().unwrap();and add the configuration flag to Args can also be done quickly. I'd like to submit the PR if the idea is ok.
@sigoden commented on GitHub (Apr 22, 2024):
Unless it becomes mainstream, I don't see the need to support it now
@hsqStephenZhang commented on GitHub (Apr 22, 2024):
Got it