You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
ginuerzh 02f1d099c4 add vendor 8 years ago
..
LICENSE add vendor 8 years ago
README.md add vendor 8 years ago
chacha20.go add vendor 8 years ago
chacha20_amd64.go add vendor 8 years ago
chacha20_amd64.py add vendor 8 years ago
chacha20_amd64.s add vendor 8 years ago
chacha20_ref.go add vendor 8 years ago
chacha20_ref_go19.go add vendor 8 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.
  • SSE2 and AVX2 support on amd64 targets.
  • Incremental encrypt/decrypt support, unlike golang.org/x/crypto/salsa20.