Mcrypto v0.2.0 Mcrypto.Crypter.AES View Source

AES encryption. Right now we just support cbc256.

Link to this section Summary

Types

t()

AES crypter data structure contains the following keys

Link to this section Types

Link to this type

t() View Source
t() :: %Mcrypto.Crypter.AES{encoder: atom(), mode: atom(), name: atom()}

AES crypter data structure contains the following keys:

  • :name: crypter name
  • :mode: crypter mode. Currently only support cbc256.
  • :encoder: encoding method. base64 or binary.