Anbarasu S
Results
1
issues of
Anbarasu S
local cipher = require("resty.openssl.cipher") local key = "12345678901234567890123456789012" -- 32 bytes local iv = "1234567890123456" -- 16 bytes local function init_encryption() local aes = cipher.new('aes256') aes:init(key, iv, { is_encrypt =...