docs: update PQC guide to follow standard template format - #14333
Open
lqiu96 wants to merge 1 commit into
Open
Conversation
Contributor
There was a problem hiding this comment.
Code Review
This pull request simplifies the Post-Quantum Cryptography (PQC) documentation by streamlining the overview, updating section headers, and reducing external links to a single resource. The review feedback suggests improving consistency by capitalizing "Post-Quantum" in the headers and formatting the technical identifier X25519MLKEM768 as inline code for better readability.
| @@ -1,16 +1,12 @@ | |||
| # Post-Quantum Cryptography (PQC) User Guide for Google Cloud Java Client Libraries | |||
| # Post-quantum Cryptography (PQC) Support | |||
Contributor
| For more information on Google Cloud's approach, see [Post-Quantum Cryptography on Google Cloud](https://cloud.google.com/security/resources/post-quantum-cryptography?hl=en). | ||
|
|
||
| To defend against this without sacrificing stability, Google Cloud Java client libraries adopt **Hybrid Key Exchange** (combining classical algorithms like `X25519` with standardized post-quantum algorithms like `ML-KEM-768`). This ensures connections remain secure even if an unforeseen mathematical weakness is discovered in either algorithm. | ||
| ## Post-quantum key exchange |
Contributor
| - [How Google is preparing for a post-quantum world](https://cloud.google.com/blog/products/identity-security/how-google-is-preparing-for-a-post-quantum-world/?e=48754805) | ||
| - [PQC in Plaintext: Google Cloud's Post-Quantum Cryptography Roadmap](https://cloud.google.com/blog/products/identity-security/pqc-in-plaintext-google-clouds-post-quantum-cryptography-roadmap) | ||
| - [Post-Quantum Cryptography Standards: What you need to know](https://security.googleblog.com/2024/08/post-quantum-cryptography-standards.html) | ||
| Google Cloud client libraries support post-quantum key exchange using the X25519MLKEM768 hybrid mechanism for TLS 1.3 connections. |
Contributor
lqiu96
force-pushed
the
pqc-guide-standard-format
branch
from
September 9, 2026 17:17
bc13607 to
87d5913
Compare
lqiu96
force-pushed
the
pqc-guide-standard-format
branch
from
September 9, 2026 17:19
87d5913 to
dd6b2da
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR updates
docs/post_quantum_cryptography_guide.mdto follow the official Google Cloud Post-Quantum Cryptography documentation template format and moves external reading links to an Additional Resources section at the bottom.Stacked on top of #14245.