mirror of
https://github.com/kepler155c/opus
synced 2024-11-05 08:26:16 +00:00
11 lines
266 B
Lua
11 lines
266 B
Lua
local Security = require('security')
|
|
local SHA1 = require('sha1')
|
|
local Terminal = require('terminal')
|
|
|
|
local password = Terminal.readPassword('Enter new password: ')
|
|
|
|
if password then
|
|
Security.updatePassword(SHA1.sha1(password))
|
|
print('Password updated')
|
|
end
|