Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/danieldidiobalsamo/sha256_golang

Go SHA-256 from-scratch implementation
https://github.com/danieldidiobalsamo/sha256_golang

cryptography go hasing sha256

Last synced: 7 days ago
JSON representation

Go SHA-256 from-scratch implementation

Awesome Lists containing this project

README

        

# About

This project consists in a from scratch implementation of SHA-256 algorithm.
That's also a rewriting of another one of my [side project](https://github.com/danieldidiobalsamo/sha256sum_from_scratch), which is a Rust from scratch implementation of SHA-256.

As an example of how to use this package, a basic version of sha256sum can be run.

# How to install

~~~
go install github.com/danieldidiobalsamo/sha256_golang@latest
$GOPATH/bin/sha256_golang
~~~

# How to run from the code

~~~
go run .
~~~