Fork of upstream chacha20, originally from git.schwanenlied.me/yawning/chacha20.git
(Now https://github.com/Yawning/chacha20, latest commit 6d1cb28 Sep 3, 2019)

Russ Magee 214e4085f5 Updated go.mod for fork 3 years ago
internal 46bd978564 Moved imports to reflect local fork 3 years ago
LICENSE 644b09ac4e Bring this up to date 3 years ago
README.md 644b09ac4e Bring this up to date 3 years ago
chacha20.go 46bd978564 Moved imports to reflect local fork 3 years ago
chacha20_test.go 46bd978564 Moved imports to reflect local fork 3 years ago
go.mod 214e4085f5 Updated go.mod for fork 3 years ago
go.sum 644b09ac4e Bring this up to date 3 years ago

README.md

chacha20 - ChaCha20

Yawning Angel (yawning at schwanenlied dot me)

Yet another Go ChaCha20 implementation. Everything else I found was slow, didn't support all the variants I need to use, or relied on cgo to go fast.

Features:

  • 20 round, 256 bit key only. Everything else is pointless and stupid.
  • IETF 96 bit nonce variant.
  • XChaCha 24 byte nonce variant.
  • SSSE3 and AVX2 support on amd64 targets.
  • Incremental encrypt/decrypt support, unlike golang.org/x/crypto/salsa20.