diff options
Diffstat (limited to 'src/checksum/adler32/adler32.cpp')
-rw-r--r-- | src/checksum/adler32/adler32.cpp | 28 |
1 files changed, 15 insertions, 13 deletions
diff --git a/src/checksum/adler32/adler32.cpp b/src/checksum/adler32/adler32.cpp index b808e3e67..c66943b88 100644 --- a/src/checksum/adler32/adler32.cpp +++ b/src/checksum/adler32/adler32.cpp @@ -1,16 +1,18 @@ -/************************************************* -* Adler32 Source File * -* (C) 1999-2007 Jack Lloyd * -*************************************************/ +/* +* Adler32 +* (C) 1999-2007 Jack Lloyd +* +* Distributed under the terms of the Botan license +*/ #include <botan/adler32.h> #include <botan/loadstor.h> namespace Botan { -/************************************************* -* Adler32 Checksum * -*************************************************/ +/* +* Adler32 Checksum +*/ void Adler32::hash(const byte input[], u32bit length) { u32bit S1x = S1, S2x = S2; @@ -45,9 +47,9 @@ void Adler32::hash(const byte input[], u32bit length) S2 = S2x; } -/************************************************* -* Update an Adler32 Checksum * -*************************************************/ +/* +* Update an Adler32 Checksum +*/ void Adler32::add_data(const byte input[], u32bit length) { const u32bit PROCESS_AMOUNT = 5552; @@ -60,9 +62,9 @@ void Adler32::add_data(const byte input[], u32bit length) hash(input, length); } -/************************************************* -* Finalize an Adler32 Checksum * -*************************************************/ +/* +* Finalize an Adler32 Checksum +*/ void Adler32::final_result(byte output[]) { store_be(output, S2, S1); |