You've already forked MP1R-Rando-CodeEdits
mirror of
https://github.com/CraftyBoss/MP1R-Rando-CodeEdits.git
synced 2026-04-01 08:50:26 -07:00
23 lines
376 B
C++
23 lines
376 B
C++
#pragma once
|
|
|
|
#include <nn/result.h>
|
|
|
|
namespace nn::ssl {
|
|
|
|
enum CertificateFormat {};
|
|
|
|
class Context {
|
|
public:
|
|
|
|
enum SslVersion {
|
|
UNK1,
|
|
UNK2
|
|
};
|
|
|
|
nn::Result Create(SslVersion ver);
|
|
void ImportServerPki(ulong *,char const*,uint,nn::ssl::CertificateFormat);
|
|
};
|
|
|
|
void Initialize();
|
|
void Finalize();
|
|
} |