Skip to content

Commit

Permalink
Remove dangling references
Browse files Browse the repository at this point in the history
  • Loading branch information
newpavlov committed Jan 10, 2024
1 parent 2947190 commit da2ee9e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
2 changes: 1 addition & 1 deletion sha2/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
Pure Rust implementation of the [SHA-2] cryptographic hash algorithms.

There are 6 standard algorithms specified in the SHA-2 standard:
[`Sha224`], [`Sha256`], [`Sha512_224`], [`Sha512_256`], [`Sha384`], and [`Sha512`].
`Sha224`, `Sha256`, `Sha512_224`, `Sha512_256`, `Sha384`, and `Sha512`.

Algorithmically, there are only 2 core algorithms: SHA-256 and SHA-512.
All other algorithms are just applications of these with different initial
Expand Down
8 changes: 2 additions & 6 deletions skein/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,10 @@

Implementation of the [Skein] family of cryptographic hash algorithms.

There are 3 standard versions of the Skein hash function:

* [`Skein256`]
* [`Skein512`]
* [`Skein1024`]
There are 3 standard versions of the Skein hash function: `Skein256`, `Skein512`, `Skein1024`.

Output size of the Skein hash functions is arbitrary, so it has to be
fixed using additional type parameter
fixed using additional type parameter.

## Examples

Expand Down

0 comments on commit da2ee9e

Please sign in to comment.