mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-07 21:38:01 -05:00
11 lines
179 B
C++
11 lines
179 B
C++
#pragma once
|
|
|
|
#include "IStreamCipher.h"
|
|
|
|
#include <memory>
|
|
|
|
namespace cryptography
|
|
{
|
|
std::unique_ptr<IStreamCipher> CreateSalsa20(const uint8_t* keyBytes, size_t keySize);
|
|
}
|