Question about using quantum algorithms from liboqs #366
-
Hello, The question might be stupid, in which case I apologise in advance. Is there a way to use quantum algorithms (NTRU, FrodoKEM etc) within this OpenSSL fork as you would, for instance, use AES, RSA and other algorithms from OpenSSL (non-related to TLS), having both quantum and non-quantum algorithms within the same library? It's my first time looking at the OpenSSL code so I might have missed some documentation files related to this. Any help pointing me out to the right direction/needed documentation is greatly appreciated. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
Well,Yes and No: It depends on the algorithm family: The quantum-safe key exchange algorithms can be used as-is exactly only as intended, i.e., as KEX algorithms, not as plain streaming ciphers (like say AES). The QS signature algorithms in turn work pretty much identical to classic signature algorithms (without the need to use a digest before feeding them, although that still can be done), e.g., see the CMS example. |
Beta Was this translation helpful? Give feedback.
Well,Yes and No: It depends on the algorithm family: The quantum-safe key exchange algorithms can be used as-is exactly only as intended, i.e., as KEX algorithms, not as plain streaming ciphers (like say AES). The QS signature algorithms in turn work pretty much identical to classic signature algorithms (without the need to use a digest before feeding them, although that still can be done), e.g., see the CMS example.