mirror of
https://github.com/Vita3K/psvpfsparser.git
synced 2024-11-23 05:29:48 +00:00
16 lines
238 B
C++
16 lines
238 B
C++
#pragma once
|
|
|
|
#include <memory>
|
|
|
|
#include "ICryptoOperations.h"
|
|
|
|
enum class CryptoOperationsTypes
|
|
{
|
|
openssl
|
|
};
|
|
|
|
class CryptoOperationsFactory
|
|
{
|
|
public:
|
|
static std::shared_ptr<ICryptoOperations> create(CryptoOperationsTypes type);
|
|
}; |