1
0
mirror of https://github.com/kepler155c/opus synced 2025-02-07 20:50:01 +00:00
opus/sys/apps/password.lua

11 lines
290 B
Lua
Raw Normal View History

local Security = require('opus.security')
local SHA = require('opus.crypto.sha2')
local Terminal = require('opus.terminal')
2017-05-05 07:34:20 -04:00
2017-05-10 06:11:25 -04:00
local password = Terminal.readPassword('Enter new password: ')
2017-05-05 07:34:20 -04:00
2017-05-10 06:11:25 -04:00
if password then
2019-06-28 06:33:47 -04:00
Security.updatePassword(SHA.compute(password))
2018-01-24 17:39:38 -05:00
print('Password updated')
2017-05-10 06:11:25 -04:00
end