repository
0.0.0-20200525082719-21c3e867933f
Repository: https://github.com/coursecomputer/sha256.git
Documentation: pkg.go.dev
# README
SHA-256
[EN] Implementation of the SHA-256 hash algorithm
[FR] Implémentation de l'algorithme de hash SHA-256
Explanation
Technology
- go v1.14
Usage
CLI:
go test -v ./test
CODE:
import "github.com/coursecomputer/SHA256/source"
var sha256 = SHA256.Init()
sha256.Update([]byte("..."))
hash := sha256.Digest()