cryptonight-rs

Crates.iocryptonight-rs
lib.rscryptonight-rs
version0.2.1
sourcesrc
created_at2018-08-21 03:33:56.749333
updated_at2018-08-27 06:23:18.390233
descriptionCryptonight-rs is a Rust wrapper around Cryptonight hash function from Monero.
homepagehttps://github.com/Team-Hycon/cryptonight-rs/
repositoryhttps://github.com/Team-Hycon/cryptonight-rs/
max_upload_size
id80523
size523,284
Dulguun Batmunkh (arigatodl)

documentation

https://team-hycon.github.io/cryptonight-rs/0_2/cryptonight/

README

Cryptonight-rs

Build Status

Cryptonight-rs is a Rust wrapper around Cryptonight hash function from Monero source code.

This code is not stable yet. It is not recommended to use it in production.

Usage

To use Cryptonight-rs, add the following to your Cargo.toml:

[dependencies]
cryptonight-rs = "^0.2"

and the following to your crate root:

extern crate cryptonight;
use cryptonight::cryptonight;

Test & Benchmark

Clone the repository into local

cd repo

Run test

cargo test

Run benchmark

cargo bench

Issues & Pull Requests

If you have an issue, feel free to add it to the Issues tab. If you'd like to help us out, the Pull Request tab is a great place to start.

If you have found a security bug, please contact us at security@glosfer.com.

Credits

Kudos to Monero team - C code from https://github.com/monero-project/monero

Commit count: 39

cargo fmt