package salsa
import "golang.org/x/crypto/salsa20/salsa"
Package salsa provides low-level access to functions in the Salsa family.
Index ¶
- Variables
- func Core208(out *[64]byte, in *[64]byte)
- func HSalsa20(out *[32]byte, in *[16]byte, k *[32]byte, c *[16]byte)
- func XORKeyStream(out, in []byte, counter *[16]byte, key *[32]byte)
Variables ¶
var Sigma = [16]byte{'e', 'x', 'p', 'a', 'n', 'd', ' ', '3', '2', '-', 'b', 'y', 't', 'e', ' ', 'k'}
Sigma is the Salsa20 constant for 256-bit keys.
Functions ¶
func Core208 ¶
Core208 applies the Salsa20/8 core function to the 64-byte array in and puts the result into the 64-byte array out. The input and output may be the same array.
func HSalsa20 ¶
HSalsa20 applies the HSalsa20 core function to a 16-byte input in, 32-byte key k, and 16-byte constant c, and puts the result into the 32-byte array out.
func XORKeyStream ¶
XORKeyStream crypts bytes from in to out using the given key and counters. In and out must overlap entirely or not at all. Counter contains the raw salsa20 counter bytes (both nonce and block counter).
Source Files ¶
hsalsa20.go salsa208.go salsa20_amd64.go salsa20_ref.go
- Version
- v0.34.0 (latest)
- Published
- Feb 22, 2025
- Platform
- linux/amd64
- Imports
- 1 packages
- Last checked
- 9 hours ago –
Tools for package owners.