Doraemonoops

Results 1 issues of Doraemonoops

here is the lua code ```lua local aes = require 'resty.aes' local cipher = aes:new('0123456789123456', nil, aes.cipher(128, 'ecb')) print(ngx.encode_base64(cipher:encrypt('foobar'))) ``` the output should be `rTeNAHEZtzsyn1dDAujGgQ==` blow is my php code...