PasswordStore
const class PasswordStore : Obj
PasswordStore manages plaintext/hashed passwords and other secrets. It is stored via an obscured props file to prevent casual reading, but is not encrypted. The passwords file must be kept secret and reads must be sequestered from all network access. We separate secrets from the main database so that it may be more easily secured.
Set a password by its key
Get a password by its key or return null if not found
Remove a password by its key
Str? get(Str key)
Get a password by its key or return null if not found.
Void remove(Str key)
Remove a password by its key.
Void set(Str key, Str val)
Set a password by its key.