Popularity
1.1
Stable
Activity
0.0
Stable
2
2
1
Monthly Downloads: 0
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 -
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 -
crypto_rsassa_pss
RSASSA-PSS Public Key Cryptographic Signature Algorithm for Erlang and Elixir. -
ntru_elixir
Elixir wrapper around libntru. NTRU is a post quantum cryptography algorithm. -
ex_bcrypt
Elixir wrapper for the OpenBSD bcrypt password hashing algorithm
Bot detection and prevention for Elixir/Phoenix applications
Paraxial.io is bot detection and prevention for Elixir/Phoenix applications. Dealing with scrapers, card cracking, or credential stuffing? We take care of that.
Promo
paraxial.io
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>>