Skip to content

Commit

Permalink
Add descriptions to each new security policy
Browse files Browse the repository at this point in the history
  • Loading branch information
alexw91 committed Jan 11, 2024
1 parent 94d702c commit 38fc03e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tls/s2n_security_policies.c
Original file line number Diff line number Diff line change
Expand Up @@ -731,6 +731,7 @@ const struct s2n_security_policy security_policy_pq_tls_1_2_2023_10_10 = {
.ecc_preferences = &s2n_ecc_preferences_20200310,
};

/* General purpose "mostly" FIPS + PQ policy (with the exception of supporting RSA Key Exchange for backwards compatibility). */
const struct s2n_security_policy security_policy_pq_20231213 = {
.minimum_protocol_version = S2N_TLS12,
.cipher_preferences = &cipher_preferences_20231213,
Expand All @@ -739,6 +740,7 @@ const struct s2n_security_policy security_policy_pq_20231213 = {
.ecc_preferences = &s2n_ecc_preferences_20201021,
};

/* General purpose FIPS + PQ policy that meets all current FIPS requirements. */
const struct s2n_security_policy security_policy_pq_20231214 = {
.minimum_protocol_version = S2N_TLS12,
.cipher_preferences = &cipher_preferences_20231214,
Expand All @@ -750,6 +752,7 @@ const struct s2n_security_policy security_policy_pq_20231214 = {
},
};

/* FIPS + PQ Policy that uses KMS's FIPS cipher preference list and meets all current FIPS requirements. */
const struct s2n_security_policy security_policy_pq_20231215 = {
.minimum_protocol_version = S2N_TLS12,
.cipher_preferences = &cipher_preferences_kms_fips_tls_1_2_2021_08,
Expand Down

0 comments on commit 38fc03e

Please sign in to comment.