Quantum-Safe Cryptography Preparation on Debian 13
TL;DR To prepare your Debian 13 server for quantum-safe cryptography, start by installing the necessary libraries. Open Quantum Safe (OQS) is a good starting point. sudo apt update # Update package lists sudo apt install liboqs-dev # Install the OQS library ### Update OpenSSL Ensure your OpenSSL version supports quantum-safe algorithms. Debian 13 should have a compatible version, but verify it: openssl version # Check OpenSSL version If needed, update OpenSSL: ...
