Changeset 287065 in webkit
- Timestamp:
- Dec 15, 2021, 1:09:35 AM (5 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
Modules/push-api/PushMessageCrypto.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r287064 r287065 1 2021-12-15 Diego Pino Garcia <dpino@igalia.com> 2 3 [GTK][WPE] Build fix for Debian Stable after r287015 4 https://bugs.webkit.org/show_bug.cgi?id=234332 5 6 Reviewed by Ryosuke Niwa. 7 8 * Modules/push-api/PushMessageCrypto.cpp: 9 (WebCore::PushCrypto::decryptAES128GCMPayload): 10 (WebCore::PushCrypto::decryptAESGCMPayload): 11 1 12 2021-12-13 Sergio Villar Senin <svillar@igalia.com> 2 13 -
trunk/Source/WebCore/Modules/push-api/PushMessageCrypto.cpp
r287015 r287065 128 128 */ 129 129 struct KeyInfo { 130 uint8_tlabel[14] = { "WebPush: info" };130 char label[14] = { "WebPush: info" }; 131 131 uint8_t clientKey[p256dhPublicKeyLength]; 132 132 uint8_t serverKey[p256dhPublicKeyLength]; … … 252 252 */ 253 253 struct KeyDerivationContext { 254 uint8_tlabel[6] = { "P-256" };254 char label[6] = { "P-256" }; 255 255 uint8_t clientPublicKeyLength[2] = { 0, 0x41 }; 256 256 uint8_t clientPublicKey[p256dhPublicKeyLength];
Note:
See TracChangeset
for help on using the changeset viewer.