diff options
author | Paul Duncan <pabs@pablotron.org> | 2019-08-25 07:42:00 -0400 |
---|---|---|
committer | Paul Duncan <pabs@pablotron.org> | 2019-08-25 07:42:00 -0400 |
commit | 39eba72693834f84c2da7c5242435e5738a35d67 (patch) | |
tree | 3f456b8f4a4054338ba6f9cecb6b9fc4f4d8459f | |
parent | 865e27e4e21784f041517bd0cc8b6d8deb0c3cd1 (diff) | |
download | sha2-39eba72693834f84c2da7c5242435e5738a35d67.tar.bz2 sha2-39eba72693834f84c2da7c5242435e5738a35d67.zip |
fix README.md links
-rw-r--r-- | README.md | 12 |
1 files changed, 7 insertions, 5 deletions
@@ -1,4 +1,4 @@ -Self-contained C11 SHA-2 implementation. +Self-contained [C11][] [SHA-2][] implementation. Includes implementations of the following: * SHA-224 @@ -12,9 +12,11 @@ See `tests.c` for usage. Benchmarks ========== -Benchmarks. Partially unrolled compression makes this implementation -faster than [coreutils][], but slower than the [assembly-optimized, -family-specific OpenSSL SHA-2 implementation][openssl-asm-sha]. +Benchmarks. + +Partially unrolled compression makes this implementation faster than +[coreutils][], but slower than the [assembly-optimized, family-specific +OpenSSL SHA-2 implementation][openssl-asm-sha]. ``` > time -p ./sha256 ~/Videos/8x*avi > /dev/null @@ -31,7 +33,7 @@ user 6.01 sys 0.32 ``` - [sha2]: https://en.wikipedia.org/wiki/SHA-2 "Secure Hash Algorithm 2" + [sha-2]: https://en.wikipedia.org/wiki/SHA-2 "Secure Hash Algorithm 2" [c11]: https://en.wikipedia.org/wiki/C11_(C_standard_revision) "C11 standard of the C programming language" [coreutils]: https://www.gnu.org/software/coreutils/ "GNU core utilities" [openssl-asm-sha]: https://github.com/openssl/openssl/tree/master/crypto/sha/asm "assembly-optimized OpenSSL SHA-2 implementation." |