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
312 B

  1. #pragma once
  2. #include "bcl_common.h"
  3. class CHashObject;
  4. class CDigestMethod
  5. {
  6. public:
  7. virtual ~CDigestMethod();
  8. virtual CEnv::StatusCode DigestExtent(CHashObject &Hash, SIZE_T Offset, const CEnv::CConstantByteRegion &Bytes);
  9. virtual CEnv::StatusCode Initialize(CHashObject &Hash);
  10. };