summaryrefslogtreecommitdiffhomepage
path: root/Stars45/Sha1.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Stars45/Sha1.cpp')
-rw-r--r--Stars45/Sha1.cpp30
1 files changed, 15 insertions, 15 deletions
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: