summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ssl_c.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2015-12-30 15:30:57 +0100
committerLioncash <mathew1800@gmail.com>2015-12-30 17:29:21 +0100
commit744f4af3ab797d8c4c456467c50661a04dd4931d (patch)
treea1f16d8b31b4f40eaa321ff131f5871a31b955a1 /src/core/hle/service/ssl_c.cpp
parentMerge pull request #1306 from Subv/sync (diff)
downloadyuzu-744f4af3ab797d8c4c456467c50661a04dd4931d.tar
yuzu-744f4af3ab797d8c4c456467c50661a04dd4931d.tar.gz
yuzu-744f4af3ab797d8c4c456467c50661a04dd4931d.tar.bz2
yuzu-744f4af3ab797d8c4c456467c50661a04dd4931d.tar.lz
yuzu-744f4af3ab797d8c4c456467c50661a04dd4931d.tar.xz
yuzu-744f4af3ab797d8c4c456467c50661a04dd4931d.tar.zst
yuzu-744f4af3ab797d8c4c456467c50661a04dd4931d.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/ssl_c.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/hle/service/ssl_c.cpp b/src/core/hle/service/ssl_c.cpp
index cabd18c80..9ecb72c77 100644
--- a/src/core/hle/service/ssl_c.cpp
+++ b/src/core/hle/service/ssl_c.cpp
@@ -62,10 +62,14 @@ static void GenerateRandomData(Service::Interface* self) {
const Interface::FunctionInfo FunctionTable[] = {
{0x00010002, Initialize, "Initialize"},
{0x000200C2, nullptr, "CreateContext"},
+ {0x00030000, nullptr, "CreateRootCertChain"},
+ {0x00040040, nullptr, "DestroyRootCertChain"},
{0x00050082, nullptr, "AddTrustedRootCA"},
+ {0x00060080, nullptr, "RootCertChainAddDefaultCert"},
{0x00110042, GenerateRandomData, "GenerateRandomData"},
{0x00150082, nullptr, "Read"},
{0x00170082, nullptr, "Write"},
+ {0x00180080, nullptr, "ContextSetRootCertChain"},
};
////////////////////////////////////////////////////////////////////////////////////////////////////