1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-04 06:15:24 +00:00
freebsd-ports/security/monocypher/pkg-descr
Dave Cottlehuber 3ebf55c3f3 security/monocypher: NEW PORT - easy to use, deploy, auditable crypto library
It is written in portable C, and approaches the size of TweetNaCl,
and the speed of libsodium.

Reviewed by:	zirias
Sponsored by:	SkunkWerks, GmbH
2023-07-17 20:45:41 +00:00

16 lines
595 B
Plaintext

Monocypher is an easy to use crypto library. It is:
- Small. Sloccount counts about 1700 lines of code, small enough to
allow audits. The binaries are under 65KB.
- Easy to deploy. Just add monocypher.c and monocypher.h to your
project. They compile as C99 or C++, have no dependency, and
are dedicated to the public domain.
- Easy to use. The API is small, consistent, and cannot fail
on correct input.
- Fast. The primitives are fast to begin with, and performance
wasn't needlessly sacrificed. Monocypher holds up pretty well
against Libsodium, despite being closer in size to TweetNaCl.