blob: 05e968f95cfa27a4ea5c87f77661d1fe57969c13 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
namespace IceSSL
{
using System;
using System.Diagnostics;
using System.Security.Cryptography.X509Certificates;
public sealed class Util
{
public static void
registerIceSSL(bool loadOnInitialize)
{
Ice.Util.registerPluginFactory("IceSSL", new PluginFactory(), loadOnInitialize);
}
}
}
|