class

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 set

Set a password by its key

get

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

remove

Remove a password by its key

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.

Haxall 4.0.5 ∙ 24-Feb-2026 14:33 EST