diff options
author | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2011-08-15 23:30:05 +0200 |
---|---|---|
committer | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2011-08-15 23:30:05 +0200 |
commit | c132c4f4306adbb4215cbca3860bd83e888207a8 (patch) | |
tree | 6e406788c163f09645adbd3bd0920e1c4a2f64ff | |
parent | 9d72825e92864d102bc1c4978ee3db17a4102c84 (diff) |
Whirlpool: Improve writing style.
-rw-r--r-- | whirlpool.rkt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/whirlpool.rkt b/whirlpool.rkt index 1468fd1..b1347e9 100644 --- a/whirlpool.rkt +++ b/whirlpool.rkt @@ -16,11 +16,11 @@ ;;; along with this program. If not, see <http://www.gnu.org/licenses/>. ;;;----------------------------------------------------------------------------- ;;; -;;; This is an implementation of the WHIRLPOOL cryptographic hashing function +;;; This is an implementation of the WHIRLPOOL cryptographic hashing function. ;;; -;;; The implementation is a rather direct implementation based on the 2003 -;;; revised version of the original paper (“The WHIRLPOOL Hashing Function”) by -;;; Barreto and Rijmen. It is optimized for clarity, not performance. +;;; The implementation is directly based on the 2003 revised version of the +;;; original paper (“The WHIRLPOOL Hashing Function”) by Barreto and Rijmen. +;;; It is optimized for clarity, not performance. ;;; (provide: [whirlpool (Bytes -> Exact-Nonnegative-Integer)]) |