mirror of
https://git.phreedom.club/localhost_frssoft/fediauth.git
synced 2024-11-22 07:51:29 +00:00
13 lines
327 B
Lua
13 lines
327 B
Lua
|
|
mtt.register("otp.qrcode", function(callback)
|
|
assert(type(otp.qrcode) == "function")
|
|
|
|
local url = "otpauth://totp/abc:myaccount?algorithm=SHA1&digits=6&issuer=abc&period=30&"
|
|
.. "secret=N6JGKMEKU2E6HQMLLNMJKBRRGVQ2ZKV7"
|
|
|
|
local ok, code = otp.qrcode(url)
|
|
assert(ok)
|
|
assert(code)
|
|
|
|
callback()
|
|
end) |