1
0
mirror of https://github.com/kepler155c/opus synced 2024-06-27 23:53:20 +00:00
opus/sys/apps/password.lua

13 lines
292 B
Lua
Raw Normal View History

2018-01-24 22:39:38 +00:00
_G.requireInjector(_ENV)
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