/
niceSOFT
/
dovecot
Обзор
Документация
Войти
/
niceSOFT
/
dovecot
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/lib-lua/test-lua-base64.lua
9 строк
308 B
Aki Tuomi
lib-lua: Add base64 encode/decode support
13 май 2025, 12:06
13 май 2025, 12:06
a8ebc8c
Код
Авторство
О чём код?
function test_base64() local input = "test value" local result = "dGVzdCB2YWx1ZQ==" local encoded = dovecot.base64.encode(input) test_assert("encoded = \" .. result .. \"", encoded == result) local output = dovecot.base64.decode(encoded) test_assert("output = \" .. input .. \"", output == input) end