mirror of
https://github.com/ComodoSecurity/openedr/
synced 2026-06-06 15:24:33 +00:00
20 lines
388 B
C++
20 lines
388 B
C++
//
|
|
// EDRAv2.libcore project
|
|
// Basic hash & crypt primitives
|
|
//
|
|
// Author: Denis Kroshin (28.01.2019)
|
|
// Reviewer: Denis Bogdanov (19.09.2019)
|
|
//
|
|
#pragma once
|
|
#include "basic.hpp"
|
|
#include "io.hpp"
|
|
|
|
#include "crypt/common.hpp"
|
|
|
|
#include "crypt/crc32.hpp"
|
|
#include "crypt/crc64.hpp"
|
|
#include "crypt/md5.hpp"
|
|
#include "crypt/sha1.hpp"
|
|
#include "crypt/sha256.hpp"
|
|
#include "crypt/xxh.hpp"
|