cloak v0.8.0 Cloak.Fields.Binary View Source
An Ecto.Type to encrypt a binary field.
Migration
The database field must be of type :binary.
add :encrypted_field, :binaryUsage
Define an Encrypted.Binary module in your project:
defmodule MyApp.Encrypted.Binary do
  use Cloak.Fields.Binary, vault: MyApp.Vault
endThen, define the type of your desired fields:
schema "table_name" do
  field :encrypted_field, MyApp.Encrypted.Binary
end