Registry / crypto / dchest-threefish

dchest-threefish

JSON →
library0.0.0-20120919164726-3ecf4c494abfgogounverified

Implements the Threefish-512 block cipher as defined in the Skein hash function specification.

go get github.com/dchest/threefish
INSTALL
IMPORT
SIG · DCHEST-THREEFISH
D
dchest-threefish
cryptogov0.0.0-20120919164726-3ecf4c494abf
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

threefish
github.com/dchest/threefish

Creates a Threefish-512 cipher and encrypts a block of data.

package main import ( "crypto/cipher" "github.com/dchest/threefish" ) func main() { key := make([]byte, 64) // 512-bit key block, _ := threefish.NewCipher(key) src := make([]byte, 64) dst := make([]byte, 64) block.Encrypt(dst, src) }
Debug
Known issues
gotchaThis package is unmaintained and may have security issues; consider using a more modern cipher.
fix
Use a standard library cipher like AES-GCM or ChaCha20-Poly1305 instead.
affects: *
Upgrade
Version history
0.0.0-20120919164726-3ecf4c494abflatest on pkg.go.dev
Audit
Dependencies

No dependency data recorded yet.

Agent activity
11 hits · last 30 days
node
10
Resources
dchest-threefish — go get dchest-threefish · libregistry