Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
272 B

  1. // Message Authentication Code structures
  2. #ifndef __CRYPTOAPI__MAC__H__
  3. #define __CRYPTOAPI__MAC__H__
  4. typedef struct _MACstate {
  5. DWORD dwBufLen;
  6. BYTE Feedback[MAX_BLOCKLEN];
  7. BYTE Buffer[MAX_BLOCKLEN];
  8. BOOL FinishFlag;
  9. } MACstate;
  10. #endif