Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jedisct1/charm
A really tiny crypto library.
https://github.com/jedisct1/charm
charm crypto cryptography permutation-based tiny xoodoo
Last synced: about 23 hours ago
JSON representation
A really tiny crypto library.
- Host: GitHub
- URL: https://github.com/jedisct1/charm
- Owner: jedisct1
- License: mit
- Created: 2019-07-16T10:53:47.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-07-21T08:37:09.000Z (5 months ago)
- Last Synced: 2024-12-14T13:16:13.435Z (8 days ago)
- Topics: charm, crypto, cryptography, permutation-based, tiny, xoodoo
- Language: C
- Homepage:
- Size: 24.4 KB
- Stars: 154
- Watchers: 6
- Forks: 14
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# charm
A tiny, self-contained cryptography library, implementing authenticated
encryption and keyed hashing.Charm uses the Xoodoo[12]([paper](https://tosc.iacr.org/index.php/ToSC/article/view/7359/6529),
[presentation](https://permutationbasedcrypto.org/2018/slides/Gilles_Van_Assche.pdf))
permutation (which can be replaced by AES-based [simpira384](https://github.com/jedisct1/simpira384)
or Gimli) in a duplex mode.The Xoodoo implementations in Charm are [formally verified](https://github.com/jedisct1/charm/tree/master/verify) against a Cryptol specification.
Users:
- [dsvpn](https://github.com/jedisct1/dsvpn) a Dead Simple VPN, designed to address the most common use case for using a VPN.
Other implementations:
- [zig-charm](https://github.com/jedisct1/zig-charm) an implementation of Charm in the Zig language.
- [charm.js](https://github.com/jedisct1/charm.js) a JavaScript (TypeScript) implementation.