diff options
author | Michael Brown <mcb30@ipxe.org> | 2022-11-07 18:09:09 +0000 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2022-11-10 09:58:44 +0000 |
commit | 688646fe6d034e98fe7cbcc9403a2d0f70434f40 (patch) | |
tree | 1c64cf601691cff448d3b3d80086b9371ab82f90 /src/include/ipxe/tls.h | |
parent | f5c829b6f8397c4083bb19b00aa147bd7a628e5e (diff) | |
download | ipxe-688646fe6d034e98fe7cbcc9403a2d0f70434f40.tar.gz |
[tls] Add GCM cipher suites
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/include/ipxe/tls.h')
-rw-r--r-- | src/include/ipxe/tls.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/include/ipxe/tls.h b/src/include/ipxe/tls.h index 355814132..6fcb69bef 100644 --- a/src/include/ipxe/tls.h +++ b/src/include/ipxe/tls.h @@ -89,6 +89,10 @@ struct tls_header { #define TLS_RSA_WITH_AES_256_CBC_SHA256 0x003d #define TLS_DHE_RSA_WITH_AES_128_CBC_SHA256 0x0067 #define TLS_DHE_RSA_WITH_AES_256_CBC_SHA256 0x006b +#define TLS_RSA_WITH_AES_128_GCM_SHA256 0x009c +#define TLS_RSA_WITH_AES_256_GCM_SHA384 0x009d +#define TLS_DHE_RSA_WITH_AES_128_GCM_SHA256 0x009e +#define TLS_DHE_RSA_WITH_AES_256_GCM_SHA384 0x009f /* TLS hash algorithm identifiers */ #define TLS_MD5_ALGORITHM 1 |