crypto_cipher() = atom()
crypto_hash_algorithm() = atom()
encryption_result() = {encrypted, binary()} | {plaintext, binary()}
decrypt/5 | |
decrypt_term/5 | |
default_cipher/0 | |
default_hash/0 | |
default_iterations/0 | |
encrypt/5 | |
encrypt_term/5 | |
supported_ciphers/0 | |
supported_hashes/0 |
decrypt(Cipher::crypto_cipher(), Hash::crypto_hash_algorithm(), Iterations::pos_integer(), PassPhrase::iodata(), Encrypted::encryption_result()) -> any()
decrypt_term(Cipher, Hash, Iterations, PassPhrase, Encrypted) -> any()
default_cipher() -> any()
default_hash() -> any()
default_iterations() -> any()
encrypt(Cipher::crypto_cipher(), Hash::crypto_hash_algorithm(), Iterations::pos_integer(), PassPhrase::iodata() | '$pending-secret', ClearText::binary()) -> encryption_result()
encrypt_term(Cipher, Hash, Iterations, PassPhrase, Term) -> any()
supported_ciphers() -> any()
supported_hashes() -> any()
Generated by EDoc