Editing
Post Quantum Crypto
(section)
Jump to navigation
Jump to search
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
== <span style="color: #FFFFFF;">Applying</span> == '''Modeling 'The Quantum Advantage' (Classical vs. Quantum):''' <syntaxhighlight lang="python"> def estimate_crack_time(key_bits, is_quantum): """ Shows why RSA dies and AES survives. """ if is_quantum: # Shor's Algorithm 'flattens' the difficulty of RSA crack_time = "Seconds" else: # Standard computer guessing combinations = 2 ** key_bits crack_time = f"{combinations} operations (Trillions of years)" return crack_time # RSA-2048 (The current standard) print(f"RSA vs Classical: {estimate_crack_time(2048, False)}") print(f"RSA vs Quantum: {estimate_crack_time(2048, True)}") # This is why the world is currently moving to 'Lattice' # math for the next generation of HTTPS. </syntaxhighlight> ; PQC Landmarks : '''Peter Shor (1994)''' β The mathematician who proved that quantum computers ''could'' break our math, starting the PQC field. : '''NIST Standard (2022)''' β The announcement of the first 4 "Winners" of the global PQC competition. : '''Quantum Key Distribution (QKD)''' β A different approach using lasers to send keys; if anyone "looks" at the key, the quantum state collapses and the intrusion is detected. : '''Hybrid PQC''' β Using ''both'' RSA and a PQC algorithm together; if the new PQC math is found to have a bug, the old RSA math still protects you from classical hackers. </div> <div style="background-color: #8B4500; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;">
Summary:
Please note that all contributions to BloomWiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see
BloomWiki:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Navigation menu
Personal tools
Not logged in
Talk
Contributions
Create account
Log in
Namespaces
Page
Discussion
English
Views
Read
Edit
View history
More
Search
Navigation
Main page
Recent changes
Random page
Help about MediaWiki
Tools
What links here
Related changes
Special pages
Page information