diff options
author | Michael Brown <mcb30@ipxe.org> | 2020-06-16 13:14:12 +0100 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2020-06-16 13:14:12 +0100 |
commit | dc785b0fb6867fd8fb2cacd148150b9115a2547b (patch) | |
tree | fd1cca77050dd407419aa69803d1a775568db903 /src/config | |
parent | 2dac11eb1d8588d095be36152bb35b35637d387b (diff) | |
download | ipxe-dc785b0fb6867fd8fb2cacd148150b9115a2547b.tar.gz |
[tls] Default to supporting only TLSv1.1 or above
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/config')
-rw-r--r-- | src/config/crypto.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config/crypto.h b/src/config/crypto.h index d3c34a94d..cc8657389 100644 --- a/src/config/crypto.h +++ b/src/config/crypto.h @@ -10,7 +10,7 @@ FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL ); /** Minimum TLS version */ -#define TLS_VERSION_MIN TLS_VERSION_TLS_1_0 +#define TLS_VERSION_MIN TLS_VERSION_TLS_1_1 /** RSA public-key algorithm */ #define CRYPTO_PUBKEY_RSA |