DataCrypter
AES 128/256 GCM encrypt/decrypt wrapper for Elixir.
Installation
-
Add
data_crypterto your list of dependencies inmix.exs:
```elixir
def deps do
[{:data_crypter, "~> 0.1.0"}]
end
```-
Ensure
data_crypteris started before your application:
```elixir
def application do
[applications: [:data_crypter]]
end
```