Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions tls/s2n_certificate_keys.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@

#include <openssl/objects.h>

#include "crypto/s2n_mldsa.h"
#include "utils/s2n_safety.h"

const struct s2n_certificate_key s2n_rsa_rsae_1024 = {
Expand Down Expand Up @@ -85,6 +86,12 @@ const struct s2n_certificate_key s2n_ec_p521 = {
.bits = 521,
};

const struct s2n_certificate_key s2n_mldsa_87_cert_key = {
.public_key_libcrypto_nid = S2N_NID_MLDSA87,
.name = "mldsa_87",
.bits = 20736,
};

const struct s2n_certificate_key *s2n_certificate_keys_rfc9151[] = {
/**
*= https://www.rfc-editor.org/rfc/rfc9151#section-5.1
Expand Down
Loading