Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/danieldidiobalsamo/sha256_golang
- Owner: danieldidiobalsamo
- License: gpl-3.0
- Created: 2022-11-25T09:47:04.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2022-11-30T18:46:00.000Z (almost 2 years ago)
- Last Synced: 2024-10-18T09:21:26.802Z (30 days ago)
- Topics: cryptography, go, hasing, sha256
- Language: Go
- Homepage:
- Size: 66.4 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 .
~~~