⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 287065 in webkit


Ignore:
Timestamp:
Dec 15, 2021, 1:09:35 AM (5 years ago)
Author:
Diego Pino Garcia
Message:

[GTK][WPE] Build fix for Debian Stable after r287015
https://bugs.webkit.org/show_bug.cgi?id=234332

Reviewed by Ryosuke Niwa.

  • Modules/push-api/PushMessageCrypto.cpp:

(WebCore::PushCrypto::decryptAES128GCMPayload):
(WebCore::PushCrypto::decryptAESGCMPayload):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r287064 r287065  
     12021-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
    1122021-12-13  Sergio Villar Senin  <svillar@igalia.com>
    213
  • trunk/Source/WebCore/Modules/push-api/PushMessageCrypto.cpp

    r287015 r287065  
    128128     */
    129129    struct KeyInfo {
    130         uint8_t label[14] = { "WebPush: info" };
     130        char label[14] = { "WebPush: info" };
    131131        uint8_t clientKey[p256dhPublicKeyLength];
    132132        uint8_t serverKey[p256dhPublicKeyLength];
     
    252252     */
    253253    struct KeyDerivationContext {
    254         uint8_t label[6] = { "P-256" };
     254        char label[6] = { "P-256" };
    255255        uint8_t clientPublicKeyLength[2] = { 0, 0x41 };
    256256        uint8_t clientPublicKey[p256dhPublicKeyLength];
Note: See TracChangeset for help on using the changeset viewer.