ladybird/Libraries/LibCrypto
Praise-Garfield 22e8e99d4c LibCrypto: Use EVP_EncryptInit instead of EVP_DecryptInit in GCM encrypt
The first EVP initialization call in AESGCMCipher::encrypt() used
EVP_DecryptInit. Every other cipher mode in the file correctly matches
its init calls to the operation direction (CBC, CTR, OCB, KW).

The second EVP_EncryptInit call overrides the context direction before
any ciphertext is produced, but the EVP_CTRL_GCM_SET_IVLEN control call
on the next line executes while the context is in decrypt mode.
2026-03-19 22:28:26 +01:00
..
ASN1 LibCrypto: Remove unused header in DER 2026-02-23 12:15:23 +01:00
Authentication LibCrypto: Implement KMAC authentication support 2026-03-19 10:46:49 +01:00
BigFraction LibCrypto: Remove unused header in BigFraction 2026-02-23 12:15:23 +01:00
BigInt LibCrypto: Remove unused header in UnsignedBigInteger 2026-02-23 12:15:23 +01:00
Certificate LibCrypto: Remove unused header in Certificate 2026-02-23 12:15:23 +01:00
Cipher LibCrypto: Use EVP_EncryptInit instead of EVP_DecryptInit in GCM encrypt 2026-03-19 22:28:26 +01:00
Curves LibCrypto: Remove unused header in SECPxxxr1 2026-02-23 12:15:23 +01:00
Hash LibCrypto: Add SHAKE digest support 2026-01-22 19:47:09 -05:00
PK LibCrypto: Remove unused header in RSA 2026-02-23 12:15:23 +01:00
CMakeLists.txt LibCrypto: Implement KMAC authentication support 2026-03-19 10:46:49 +01:00
Forward.h Everywhere: Hoist the Libraries folder to the top-level 2024-11-10 12:50:45 +01:00
OpenSSL.cpp LibCrypto: Add wrapper to EVP_PKEY_get_octet_string_param 2025-12-30 14:16:35 +01:00
OpenSSL.h LibCrypto: Add wrapper to EVP_PKEY_get_octet_string_param 2025-12-30 14:16:35 +01:00
OpenSSLForward.h LibCrypto+LibWeb: Refactor AES implementation with OpenSSL 2025-03-02 15:11:38 +01:00