Comeonin.Pbkdf2Base64

Module that provides base64 encoding for pbkdf2.

Source

Summary

decode(data)

Decode using an adapted base64 alphabet (using . instead of + and with no padding)

encode(data)

Encode using an adapted base64 alphabet (using . instead of + and with no padding)

Functions

decode(data)

Decode using an adapted base64 alphabet (using . instead of + and with no padding).

Examples

iex> Comeonin.Pbkdf2Base64.decode("c3BhbWFuZGVnZ3M")
"spamandeggs"
Source
encode(data)

Encode using an adapted base64 alphabet (using . instead of + and with no padding).

Examples

iex> Comeonin.Pbkdf2Base64.encode "spamandeggs"
"c3BhbWFuZGVnZ3M"
Source