oSHA256.hpp 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /*====================================================================*
  2. *
  3. * oSHA256.hpp - oSHA256 class declaration;
  4. *
  5. * implement 256-bit encryption according to FIPS180-2 sec 5.3.2 by
  6. * encoding variable-length input into fixed-length, 32 byte digest;
  7. *
  8. * Motley Tools by Charles Maier <cmaier@cmassoc.net>;
  9. * Copyright 2001-2006 by Charles Maier Associates;
  10. * Licensed under the Internet Software Consortium License;
  11. *
  12. *--------------------------------------------------------------------*/
  13. #ifndef oSHA256_HEADER
  14. #define oSHA256_HEADER
  15. /*====================================================================*
  16. * system header files;
  17. *--------------------------------------------------------------------*/
  18. #include <cstring>
  19. /*====================================================================*
  20. * custom header files;
  21. *--------------------------------------------------------------------*/
  22. #include "../classes/stdafx.hpp"
  23. /*====================================================================*
  24. * constants;
  25. *--------------------------------------------------------------------*/
  26. #define oSHA256_LEFT_SIZE 2
  27. #define oSHA256_HASH_SIZE 256/32
  28. #define oSHA256_BUFFER_LENGTH 256/4
  29. #define oSHA256_DIGEST_LENGTH 256/8
  30. /*====================================================================*
  31. * class datatypes;
  32. *--------------------------------------------------------------------*/
  33. typedef unsigned char byte;
  34. /*====================================================================*
  35. * class declaration;
  36. *--------------------------------------------------------------------*/
  37. class __declspec (dllexport) oSHA256
  38. {
  39. public:
  40. oSHA256 ();
  41. ~ oSHA256 ();
  42. static unsigned DigestLength;
  43. oSHA256 & Reset (void);
  44. oSHA256 & Write (void const * memory, size_t length);
  45. oSHA256 & Fetch (byte digest []);
  46. private:
  47. oSHA256 & Block (const byte buffer []);
  48. uint32_t * mcount;
  49. uint32_t * mstate;
  50. uint8_t * mblock;
  51. uint8_t * mextra;
  52. };
  53. /*====================================================================*
  54. * end declaration;
  55. *--------------------------------------------------------------------*/
  56. #endif