Skip to content

Commit

Permalink
RIPEMD-256 implementation (#278)
Browse files Browse the repository at this point in the history
  • Loading branch information
gavadinov committed Jul 19, 2021
1 parent 3d17a67 commit 677f59a
Show file tree
Hide file tree
Showing 11 changed files with 792 additions and 16 deletions.
48 changes: 32 additions & 16 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ members = [
"md4",
"md5",
"ripemd160",
"ripemd256",
"ripemd320",
"sha1",
"sha2",
Expand Down
2 changes: 2 additions & 0 deletions ripemd256/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/target
Cargo.lock
25 changes: 25 additions & 0 deletions ripemd256/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
[package]
name = "ripemd256"
version = "0.1.0"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
edition = "2018"
readme = "README.md"
keywords = ["crypto", "ripemd320", "hash", "digest"]
categories = ["cryptography", "no-std"]
description = "RIPEMD-256 hash function"
repository = "https://github.com/RustCrypto/hashes"


[dependencies]
block-buffer = "0.9"
digest = "0.9"
opaque-debug = "0.3"

[dev-dependencies]
digest = { version = "0.9", features = ["dev"] }
hex-literal = "0.3"

[features]
default = ["std"]
std = ["digest/std"]

0 comments on commit 677f59a

Please sign in to comment.