GitXplorerGitXplorer
Z

rcrypt

public
1 stars
0 forks
1 issues

Commits

List of commits on branch master.
Unverified
a00cdfbd1329199f039a9b9c8f9487e499b804db

Actually update to latest rust.

committed 10 years ago
Unverified
179a685c29566e2192e47c0e4536caedecafbb24

Update to latest rust.

committed 10 years ago
Unverified
d5b1f801db8eac7919dd775be4ae3d8368f93128

Make sure all the miller_rabin threads exit.

committed 10 years ago
Unverified
c412d9b16275d429870729b6b09ddb62a1347d7a

Add benchmarks.

committed 10 years ago
Unverified
86d18fdaee25acc8e4a3556e9484d48fe8e09f8d

Add non-threaded option.

committed 10 years ago
Unverified
9d5d38635aca70568a76b5e41b53c3b63af4e115

Make miller_rabin parallel.

committed 10 years ago

README

The README file for this repository.

rcrypt

rcrypt is a rust-based cryptographic library build entirely for learning purposes. It is not suitable for high security purposes and will not be for the foreseeable future.

Using rcrypt in your project

If, for some reason, you wish to include rcrypt in your rust project, add the following to your Cargo.toml file:

[dependencies.rcrypt]
git = "https://github.com/dgriffen/rcrypt.git"

then add

extern crate rcrypt;

to your rust project.