Packages

Encrypted fields for Ecto

Current section

Files

Jump to
ad_cloak_ecto lib cloak_ecto crypto interface.ex
Raw

lib/cloak_ecto/crypto/interface.ex

defmodule Cloak.Ecto.Crypto.Interface do
@moduledoc false
@type algorithm :: atom()
@type secret :: binary
@type value :: iodata
@callback hmac(atom(), secret, value) :: binary
end