AlexSm 1ac13c847b Library import 16 (#2433) | 8 месяцев назад | |
---|---|---|
.. | ||
kyber_r3 | 8 месяцев назад | |
README.md | 1 год назад | |
s2n_kyber_evp.c | 1 год назад | |
s2n_kyber_evp.h | 1 год назад | |
s2n_pq.c | 1 год назад | |
s2n_pq.h | 1 год назад | |
s2n_pq_asm.h | 1 год назад | |
s2n_pq_random.c | 1 год назад | |
s2n_pq_random.h | 2 лет назад |
This directory contains code for new post-quantum key exchange mechanisms. There are no known computationally feasible attacks (classical or quantum) against these algorithms when used with the recommended key lengths.
Quantum computers use the properties of quantum mechanics to evaluate quantum algorithms. These algorithms can solve some classically hard (exponential time) problems quickly (polynomial time). Shor's algorithm is one such algorithm which can factor large integers, thus breaking RSA encryption and digital signature, and another quantum algorithm can solve the discrete logarithm problem over arbitrary groups thus breaking Diffie–Hellman and elliptic curve Diffie–Hellman key exchange.
Post-quantum public-key cryptographic algorithms run on a classical computer and are conjectured secure against both classical and quantum attacks. NIST is in the process of reviewing submissions and standardizing them, see more info on the NIST website. Until the review and standardization is complete the post-quantum key exchanges in s2n must not be used for key establishment by themselves. Instead they should only be used as part of a hybrid key exchange, which combines a post-quantum key exchange scheme and a classical key exchange scheme.
A hybrid key exchange combines both the high assurance of classical key exchange with the conjectured quantum-resistance of newly proposed key exchanges. For hybrid TLS 1.2, s2n implements the hybrid specification from this RFC. See this s2n issue for more up-to-date information. For hybrid TLS 1.3, s2n implements the hybrid specification from this draft RFC. See also this doc that defines hybrid group values for interoperability.
Certain post-quantum KEM algorithms included in s2n use optimized assembly code for efficient computation. When compiling s2n on compatible toolchains,
the optimized assembly code will significantly improve performance of the post-quantum cryptographic operations. s2n attempts to detect whether or not
the architecture is compatible with the assembly code, and falls back to the portable C implementation if it detects incompatibility. However, some users
may wish to manually force s2n to use the portable C implementation. To do so, simply export S2N_NO_PQ_ASM=1
as an environment variable before compiling.
Users may have need to compile s2n without any PQ crypto support whatsoever. To so do, export S2N_NO_PQ=1
as an environment
variable before compiling.
pq-crypto/KEM_NAME/
pq-crypto/Makefile
to build that directorylib/Makefile
to also include that directorypq-crypto/s2n_pq_random.h
and use the function s2n_get_random_bytes
for any random data the KEM needspq-crypto/KEM_NAME/KEM_NAME.h
with the size of objects and method definitionstls/s2n_tls_parameters.h
KEM_NAME
s2n_kem
struct in tls/s2n_kem.c
supported_KEM_NAME_params
array in tls/s2n_kem.c
kem_mapping
with the correct cipher suite values2n_test_kem_with_kat()
in tests/unit/s2n_KEM_NAME_kat_test.c
tests/fuzz/s2n_KEM_NAME_fuzz_test.c
tests/saw/KEM_NAME/verify.saw
s2n_cipher_suite
in tls/s2n_cipher_suites.c
s2n_cipher_preferences
in tls/s2n_cipher_preferences.c
that uses the new cipher suite
pq-crypto/KEM_NAME/
pq-crypto/Makefile
to build that directorylib/Makefile
to also include that directorypq-crypto/s2n_pq_random.h
and use the function s2n_get_random_bytes
for any random data the KEM needspq-crypto/KEM_NAME/KEM_NAME.h
with the size of objects and method definitionstls/s2n_tls_parameters.h
KEM_NAME
s2n_kem
struct in tls/s2n_kem.c
s2n_test_kem_with_kat()
in tests/unit/s2n_KEM_NAME_kat_test.c
tests/fuzz/s2n_KEM_NAME_fuzz_test.c
tests/saw/KEM_NAME/verify.saw
supported_KEM_NAME_params
array in tls/s2n_kem.c
git clone https://github.com/awslabs/s2n.git
Use the sample server and client in the bin directory:
# Terminal 1
# Use the s2nd CLI tool to start a TLS daemon with the KMS-PQ-TLS-1-0-2019-06 cipher preferences listening on port 8888
export PATH_TO_S2N=/path/to/s2n
export LD_LIBRARY_PATH=${PATH_TO_S2N}/test-deps/openssl-1.1.1/lib:${PATH_TO_S2N}/test-deps/openssl-1.1.1/lib:${PATH_TO_S2N}/lib:${PATH_TO_S2N}/bin
export PATH=${PATH_TO_S2N}/bin:$PATH
s2nd --cert ${PATH_TO_S2N}/tests/pems/rsa_2048_sha256_wildcard_cert.pem --key ${PATH_TO_S2N}/tests/pems/rsa_2048_sha256_wildcard_key.pem --negotiate --ciphers KMS-PQ-TLS-1-0-2019-06 0.0.0.0 8888
# Terminal 2
# Use the s2nc TLS CLI client to connect to the TLS server daemon started in Terminal 1 on port 8888
export PATH_TO_S2N=/path/to/s2n
export LD_LIBRARY_PATH=${PATH_TO_S2N}/test-deps/openssl-1.1.1/lib:${PATH_TO_S2N}/test-deps/openssl-1.1.1/lib:${PATH_TO_S2N}/lib:${PATH_TO_S2N}/bin
export PATH=${PATH_TO_S2N}/bin:$PATH
s2nc -i --ciphers KMS-PQ-TLS-1-0-2019-06 0.0.0.0 8888