Popularity
0.9
Growing
Activity
0.0
Stable
3
2
1
Monthly Downloads: 3
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.
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
Promo
www.saashub.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>>