Logo

0x5a.live

for different kinds of informations and explorations.

GitHub - keichan34/elixir_tea: TEA implementation in Elixir

TEA implementation in Elixir. Contribute to keichan34/elixir_tea development by creating an account on GitHub.

Visit SiteGitHub - keichan34/elixir_tea: TEA implementation in Elixir

GitHub - keichan34/elixir_tea: TEA implementation in Elixir

TEA implementation in Elixir. Contribute to keichan34/elixir_tea development by creating an account on GitHub.

Powered by 0x5a.live ๐Ÿ’—

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

Elixir Resources

are all listed below.

Resources

listed to get explored on!!

Made with โค๏ธ

to provide different kinds of informations and resources.