Implement FileManIOFileClass, general bug correction.

This commit is contained in:
manzerbredes 2015-03-11 09:51:03 +04:00
parent 998745fe45
commit 783197aaa1
8 changed files with 228 additions and 18 deletions

View file

@ -28,7 +28,7 @@
* @brief Hashing class
* @author manzerbredes
*
* Class who handle hashing functions to a byte* parameter.
* Class who handle hashing functions on a byte* parameter.
* HASHCrypt try to detect errors and throw exceptions.
* HASHCrypt use crypto++ library.
*/
@ -111,6 +111,7 @@ class HASHCrypt{
*/
void checkDigestSize(int sizeRequired, int size);
/**
* @brief Make and error message.
*
@ -123,8 +124,6 @@ class HASHCrypt{
*/
std::string getInvalidDigestSizeError(int sizeRequired, int size);
};
#endif