diff options
| author | Michael Brown | 2022-11-07 19:09:09 +0100 |
|---|---|---|
| committer | Michael Brown | 2022-11-10 10:58:44 +0100 |
| commit | 688646fe6d034e98fe7cbcc9403a2d0f70434f40 (patch) | |
| tree | 1c64cf601691cff448d3b3d80086b9371ab82f90 /src/include/ipxe | |
| parent | [tests] Verify ability to perform in-place encryption and decryption (diff) | |
| download | ipxe-688646fe6d034e98fe7cbcc9403a2d0f70434f40.tar.gz ipxe-688646fe6d034e98fe7cbcc9403a2d0f70434f40.tar.xz ipxe-688646fe6d034e98fe7cbcc9403a2d0f70434f40.zip | |
[tls] Add GCM cipher suites
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/include/ipxe')
| -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 |
