Popularity
0.8
Declining
Activity
0.0
Stable
2
2
1

Monthly Downloads: 4
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.

Do you think we are missing an alternative of elixir_tea or a related project?

Add another 'Cryptography' Package

README

TEA

Build Status

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>>