# HG changeset patch # User Matthew Wild # Date 1752138935 -3600 # Node ID dbbbd5caf292d95c66f6e12e609dba5a629205f7 # Parent 9dcdb56f75dd87b5606546ad38dc813edcb3cad3 mod_cloud_notify_encrypted: Fix variable name (thanks bronko) diff -r 9dcdb56f75dd -r dbbbd5caf292 mod_cloud_notify_encrypted/mod_cloud_notify_encrypted.lua --- a/mod_cloud_notify_encrypted/mod_cloud_notify_encrypted.lua Mon Jul 07 11:39:16 2025 -0500 +++ b/mod_cloud_notify_encrypted/mod_cloud_notify_encrypted.lua Thu Jul 10 10:15:35 2025 +0100 @@ -14,7 +14,7 @@ -- FIXME: luaossl does not expose the EVP_CTRL_GCM_GET_TAG API, so we append 16 NUL bytes -- Siskin does not validate the tag anyway. function crypto.aes_128_gcm_encrypt(key, iv, message) - return ciphers.new("AES-128-GCM"):encrypt(key, iv):final(message)..string.rep("\0", 16); + return ossl_ciphers.new("AES-128-GCM"):encrypt(key, iv):final(message)..string.rep("\0", 16); end end