Categorygithub.com/coursecomputer/SHA256
repository
0.0.0-20200525082719-21c3e867933f
Repository: https://github.com/coursecomputer/sha256.git
Documentation: pkg.go.dev

# Packages

No description provided by the author
No description provided by the author

# README

License: MIT

SHA-256

[EN] Implementation of the SHA-256 hash algorithm

[FR] Implémentation de l'algorithme de hash SHA-256

Explanation

Technology

Usage

CLI:

go test -v ./test

CODE:

import "github.com/coursecomputer/SHA256/source"

var sha256 = SHA256.Init()

sha256.Update([]byte("..."))
hash := sha256.Digest()

Links