Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tableturn/kryptonite
A kollection of scripts that are very close to cryptography but aren't - hence the typo.
https://github.com/tableturn/kryptonite
cryptography hex kryptonite
Last synced: about 22 hours ago
JSON representation
A kollection of scripts that are very close to cryptography but aren't - hence the typo.
- Host: GitHub
- URL: https://github.com/tableturn/kryptonite
- Owner: tableturn
- Created: 2018-04-18T16:01:46.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-05-05T06:28:37.000Z (over 1 year ago)
- Last Synced: 2024-10-18T15:18:00.752Z (29 days ago)
- Topics: cryptography, hex, kryptonite
- Language: Elixir
- Homepage:
- Size: 109 KB
- Stars: 5
- Watchers: 2
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Kryptonite
[![Build Status](https://ci.linky.one/api/badges/tableturn/kryptonite/status.svg)](https://ci.linky.one/tableturn/kryptonite)
[![Coverage Report](https://codecov.io/gh/tableturn/kryptonite/branch/master/graph/badge.svg)](https://codecov.io/gh/tableturn/kryptonite)
[![Hex.pm](https://img.shields.io/hexpm/dt/kryptonite.svg)](https://hex.pm/packages/kryptonite)A collection of modules that are very close to cryptography but aren't - hence the typo.
## Motivations
We initially were using the excellent [`ExCrypto`](https://github.com/ntrepid8/ex_crypto).
For all intent and purposes, that's what you should be using. However, we quickly realized
that [`ExCrypto`](https://github.com/ntrepid8/ex_crypto) is:- Performing superfluous operations (Base64 encoding, computing key fingerprints, etc).
- Offering outdated options (AES `:notsup` key lengths).
- Not offering some of the functions we needed (Mnemonics etc).This is why we decided to roll our own. We also are aiming for an evergreen coverage
and typespec.## Installation
If [available in Hex](https://hex.pm/docs/publish), the package can be installed
by adding `kryptonite` to your list of dependencies in `mix.exs`:```elixir
def deps do
[
{:kryptonite, "~> 0.1.0"}
]
end
```Documentation can be generated with [ExDoc](https://github.com/elixir-lang/ex_doc)
and published on [HexDocs](https://hexdocs.pm). Once published, the docs can
be found at [https://hexdocs.pm/kryptonite](https://hexdocs.pm/kryptonite).