Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

document specs [skip ci] #190

Merged
merged 3 commits into from
Jun 28, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,26 @@ mechanism and X.509 data structures. Also available is support for
TLS1.3 signature functionality via the [OpenSSL3 fetchable signature
algorithm feature](https://github.com/openssl/openssl/pull/19312).

Standards implemented
---------------------

This provider adheres to and implements all standards and algorithms
implemented by its core components, [openssl](https://github.com/openssl/openssl)
and [liboqs](https://github.com/open-quantum-safe/liboqs), e.g., concerning
X.509, PKCS#8 or CMS.

It adds additionally the implementation for hybrid TLS keys as documented in
[Hybrid key exchange in TLS 1.3](https://datatracker.ietf.org/doc/draft-ietf-tls-hybrid-design/).
The same conceptual mechanism of combining classic and PQ keys is
implemented in all hybrid signature schemes, e.g., when encoded in X.509 or PKCS#8
data: (Plain binary/OCTET_STRING representations as e.g. documented in
[Internet X.509 Public Key Infrastructure: Algorithm Identifiers for Dilithium](https://datatracker.ietf.org/doc/draft-ietf-lamps-dilithium-certificates/)
of) classic and PQ key material and signatures are simply concatenated. As all
(O)IDs for the various algorithms together with the algorithms themselves are
still changing, the following two pages document current and past (O)IDs used by the
various ´liboqs´-based implementations for [KEM](https://github.com/open-quantum-safe/oqs-provider/blob/main/oqs-template/oqs-kem-info.md)
and [Signatures](https://github.com/open-quantum-safe/oqs-provider/blob/main/oqs-template/oqs-sig-info.md).
baentsch marked this conversation as resolved.
Show resolved Hide resolved

Algorithms
----------

Expand Down