mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-11 12:06:07 +00:00
LibTLS: Enable the RSA_WITH_AES_256_GCM_SHA384 cipher
This is more of an example commit of how to add new ciphers to TLS.
This commit is contained in:
parent
68f6796e72
commit
ed1800547e
Notes:
sideshowbarker
2024-07-18 17:47:27 +09:00
Author: https://github.com/Dexesttp
Commit: ed1800547e
Pull-request: https://github.com/SerenityOS/serenity/pull/7270
Reviewed-by: https://github.com/alimpfard ✅
3 changed files with 5 additions and 2 deletions
|
@ -20,7 +20,6 @@ enum class CipherSuite {
|
|||
RSA_WITH_AES_256_CBC_SHA = 0x0035,
|
||||
RSA_WITH_AES_128_CBC_SHA256 = 0x003C,
|
||||
RSA_WITH_AES_256_CBC_SHA256 = 0x003D,
|
||||
// TODO
|
||||
RSA_WITH_AES_128_GCM_SHA256 = 0x009C,
|
||||
RSA_WITH_AES_256_GCM_SHA384 = 0x009D,
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue