Crypto.h 236 B

1234567891011121314
  1. #pragma once
  2. #include "exports.h"
  3. #include "FileDefinition.h"
  4. namespace craftlab::fakeraid
  5. {
  6. class CRYPTO_EXPORT Crypto
  7. {
  8. public:
  9. Crypto();
  10. void Compute(const std::string& path, FileAndSum& file);
  11. };
  12. }