Behaviours: gen_server.
code_change/3 | |
decrypt/1 | |
encrypt/1 | |
get_config/1 | |
handle_call/3 | |
handle_cast/2 | |
handle_info/2 | |
init/1 | |
refresh_config/0 | |
set_secret/1 | |
start_link/0 | |
terminate/2 |
code_change(OldVsn, State, Extra) -> any()
decrypt(Term::{plaintext, term()} | {encrypted, binary()}) -> term()
encrypt(Term::term()) -> {plaintext, term()} | {encrypted, binary()}
get_config(Config::atom()) -> term()
handle_call(X1, From, State) -> any()
handle_cast(Message, State) -> any()
handle_info(Message, State) -> any()
init(X1) -> any()
refresh_config() -> ok
set_secret(Secret::binary()) -> ok
start_link() -> any()
terminate(Reason, State) -> any()
Generated by EDoc