type

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.

methods

get

Get a password by its key or return null if not found.

remove

Remove a password by its key.

set

Set a password by its key.

Slot Details

get

Str? get(Str key)

Get a password by its key or return null if not found.

remove

Void remove(Str key)

Remove a password by its key.

set

Void set(Str key, Str val)

Set a password by its key.