Schema helpers for encrypted fields.
defmodule MyApp.Accounts.User do use Ecto.Schema use Kryptex.Schema schema "users" do encrypted_field :email, :string encrypted_field :profile, :map end end