From 51657e10769faa2617d546a06c42e4c62a19bb50 Mon Sep 17 00:00:00 2001 From: Aki Date: Sun, 30 Jan 2022 17:41:24 +0100 Subject: Removed trailing whitespace all over the place --- Stars45/Sha1.cpp | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) (limited to 'Stars45/Sha1.cpp') diff --git a/Stars45/Sha1.cpp b/Stars45/Sha1.cpp index 7bbfd77..7e3de70 100644 --- a/Stars45/Sha1.cpp +++ b/Stars45/Sha1.cpp @@ -40,7 +40,7 @@ #include "Sha1.h" -/* +/* * SHA1 * * Description: @@ -60,7 +60,7 @@ SHA1::SHA1() Reset(); } -/* +/* * ~SHA1 * * Description: @@ -80,7 +80,7 @@ SHA1::~SHA1() // The destructor does nothing } -/* +/* * Reset * * Description: @@ -112,7 +112,7 @@ void SHA1::Reset() Corrupted = false; } -/* +/* * Result * * Description: @@ -153,7 +153,7 @@ bool SHA1::Result(unsigned *message_digest_array) return true; } -/* +/* * Input * * Description: @@ -210,7 +210,7 @@ unsigned length) } } -/* +/* * Input * * Description: @@ -236,7 +236,7 @@ unsigned length) Input((unsigned char *) message_array, length); } -/* +/* * Input * * Description: @@ -257,7 +257,7 @@ void SHA1::Input(unsigned char message_element) Input(&message_element, 1); } -/* +/* * Input * * Description: @@ -278,7 +278,7 @@ void SHA1::Input(char message_element) Input((unsigned char *) &message_element, 1); } -/* +/* * operator<< * * Description: @@ -309,7 +309,7 @@ SHA1& SHA1::operator<<(const char *message_array) return *this; } -/* +/* * operator<< * * Description: @@ -340,7 +340,7 @@ SHA1& SHA1::operator<<(const unsigned char *message_array) return *this; } -/* +/* * operator<< * * Description: @@ -364,7 +364,7 @@ SHA1& SHA1::operator<<(const char message_element) return *this; } -/* +/* * operator<< * * Description: @@ -388,7 +388,7 @@ SHA1& SHA1::operator<<(const unsigned char message_element) return *this; } -/* +/* * ProcessMessageBlock * * Description: @@ -496,7 +496,7 @@ void SHA1::ProcessMessageBlock() Message_Block_Index = 0; } -/* +/* * PadMessage * * Description: @@ -565,7 +565,7 @@ void SHA1::PadMessage() } -/* +/* * CircularShift * * Description: -- cgit v1.1