mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-07 21:38:01 -05:00
11 lines
137 B
C++
11 lines
137 B
C++
#pragma once
|
|
|
|
#include "IHashFunction.h"
|
|
|
|
#include <memory>
|
|
|
|
namespace cryptography
|
|
{
|
|
std::unique_ptr<IHashFunction> CreateSha1();
|
|
}
|