1
0
mirror of https://github.com/kepler155c/opus synced 2024-06-28 16:13:20 +00:00
opus/sys/apps/password.lua

11 lines
266 B
Lua
Raw Normal View History

local Security = require('security')
local SHA1 = require('sha1')
2017-05-10 10:11:25 +00:00
local Terminal = require('terminal')
2017-05-05 11:34:20 +00:00
2017-05-10 10:11:25 +00:00
local password = Terminal.readPassword('Enter new password: ')
2017-05-05 11:34:20 +00:00
2017-05-10 10:11:25 +00:00
if password then
2018-01-24 22:39:38 +00:00
Security.updatePassword(SHA1.sha1(password))
print('Password updated')
2017-05-10 10:11:25 +00:00
end