Popularity
1.0
Declining
Activity
0.0
Stable
2
2
1
Monthly Downloads: 2
Programming language: Elixir
License: MIT License
Tags:
Cryptography
Latest version: v1.0.0
elixir_tea alternatives and similar packages
Based on the "Cryptography" category.
Alternatively, view elixir_tea alternatives based on common mentions on social networks and blogs.
-
comeonin
Password hashing specification for the Elixir programming language -
nimble_totp
A tiny Elixir library for time-based one time passwords (TOTP) -
pot
POT is an Erlang library for generating Google Authenticator compatible one time passwords -
one_time_pass_ecto
No longer maintained - One-time password library with Ecto support (for Elixir) -
rsa_ex
Library for working with RSA keys using Elixir and OpenSSL ports -
siphash-elixir
An Elixir implementation of the SipHash cryptographic hash family -
ntru_elixir
a NIF for libntru. NTRU is a post quantum cryptography algorithm. -
crypto_rsassa_pss
RSASSA-PSS Public Key Cryptographic Signature Algorithm for Erlang and Elixir. -
ex_bcrypt
Elixir wrapper for the OpenBSD bcrypt password hashing algorithm
Updating dependencies is time-consuming.
Solutions like Dependabot or Renovate update but don't merge dependencies. You need to do it manually while it could be fully automated! Add a Merge Queue to your workflow and stop caring about PR management & merging. Try Mergify for free.
Promo
blog.mergify.com
Do you think we are missing an alternative of elixir_tea or a related project?
README
TEA
A TEA (Tiny Encryption Algorithm) implemented in pure Elixir.
Usage
Encryption
text = <<0 :: unsigned-64>>
key = <<0 :: unsigned-128>>
TEA.encrypt text, key
=> <<65, 234, 58, 10, 148, 186, 169, 64>>
Decryption
ciphertext = <<65, 234, 58, 10, 148, 186, 169, 64>>
key = <<0 :: unsigned-128>>
TEA.decrypt ciphertext, key
=> <<0, 0, 0, 0, 0, 0, 0, 0>>