Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 593 Bytes

README.md

File metadata and controls

32 lines (23 loc) · 593 Bytes

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