Popularity
2.5
Declining
Activity
0.0
Declining
5
4
2
Monthly Downloads: 12
Programming language: Elixir
License: MIT License
Tags:
Cryptography
Latest version: v0.0.1
aescmac alternatives and similar packages
Based on the "Cryptography" category.
Alternatively, view aescmac alternatives based on common mentions on social networks and blogs.
-
pot
Erlang library for generating one time passwords compatible with Google Authenticator. -
ex_crypto
Elixir wrapper for Erlang crypto and public_key modules. Provides sensible defaults for many crypto functions to make them easier to use. -
crypto_rsassa_pss
RSASSA-PSS Public Key Cryptographic Signature Algorithm for Erlang. -
ntru_elixir
Elixir wrapper for libntru. A post quantum cryptography system. -
ex_bcrypt
Elixir wrapper for the OpenBSD bcrypt password hashing algorithm.
Scout APM - Leading-edge performance monitoring starting at $39/month
Scout APM uses tracing logic that ties bottlenecks to source code so you know the exact line of code causing performance issues and can get back to building a great product faster.
Sponsored
scoutapm.com
Do you think we are missing an alternative of aescmac or a related project?
Popular Comparisons
README
Hint for users of OTP >= 20
Since OTP 20 the AES-CMAC is in :crypto
You can simply use for example:
:crypto.cmac :"aes_cbc128", <<0x2b7e1516_28aed2a6_abf71588_09cf4f3c::128>>,<<0x6bc1bee2_2e409f96_e93d7e11_7393172a_ae2d8a57_1e03ac9c_9eb76fac_45af8e51_30c81c46_a35ce411::320>>
See in Erlang sources
Aescmac
Implementation of rfc4493 in elixir using :crypto from erlang for aes.
All tests from rfc4493 passing.
Aescmac.aes_cmac takes two binaries, the key and the message, where the key has to be 128bit
Usage example:
# Aescmac.aes_cmac(key, message)
<<0x070a16b4_6b4d4144_f79bdd9d_d04a287c::128>> = Aescmac.aes_cmac(<<0x2b7e1516_28aed2a6_abf71588_09cf4f3c::128>>,<<0x6bc1bee2_2e409f96_e93d7e11_7393172a::128>>)
Documentation
Docs can be found at hexdocs.pm.
Installation
Available in Hex, the package can be installed with:
- Add aescmac to your list of dependencies in
mix.exs
:
def deps do
[{:aescmac, "~> 0.0.1"}]
end
- Ensure aescmac is started before your application:
def application do
[applications: [:aescmac]]
end