https://github.com/noir-lang/sha512
https://github.com/noir-lang/sha512
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/noir-lang/sha512
- Owner: noir-lang
- License: apache-2.0
- Created: 2025-02-21T13:21:52.000Z (2 months ago)
- Default Branch: master
- Last Pushed: 2025-02-21T13:52:12.000Z (2 months ago)
- Last Synced: 2025-02-21T14:35:44.600Z (2 months ago)
- Language: Noir
- Size: 45.9 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
- awesome-noir - SHA512 - SHA512 and SHA384 hashes (Libraries / Cryptography)
README
# sha512
> [!WARNING]
> This library has not been reviewed by the Noir team and is unaudited. Use at your own risk.Library that implements SHA512 and SHA384
## Noir version compatibility
This library is tested against all stable versions of noir from 1.0.0-beta.3.
## Benchmarks
Benchmarks are ignored by `git` and checked on pull-request. As such, benchmarks may be generated
with the following command.```bash
# execute the following
./scripts/build-gates-report.sh
```The benchmark will be generated at `./gates_report.json`.
## Installation
In your _Nargo.toml_ file, add the version of this library you would like to install under dependency:
```toml
[dependencies]
sha512 = { tag = "v0.1.0", git = "https://github.com/noir-lang/sha512" }
```