diff options
Diffstat (limited to 'csharp/src/IceSSL/Util.cs')
-rw-r--r-- | csharp/src/IceSSL/Util.cs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/csharp/src/IceSSL/Util.cs b/csharp/src/IceSSL/Util.cs index 9fa6b8d0142..0dd847fcb10 100644 --- a/csharp/src/IceSSL/Util.cs +++ b/csharp/src/IceSSL/Util.cs @@ -28,6 +28,20 @@ namespace IceSSL public System.Security.Cryptography.X509Certificates.X509Certificate2[] nativeCerts; } + /// <summary> + /// This class provides information about a connection to applications + /// that require information about a peer. + /// </summary> + public sealed class WSSNativeConnectionInfo : WSSConnectionInfo + { + /// <summary> + /// The certificate chain. This may be null if the peer did not + /// supply a certificate. The peer's certificate (if any) is the + /// first one in the chain. + /// </summary> + public System.Security.Cryptography.X509Certificates.X509Certificate2[] nativeCerts; + } + public sealed class Util { public static X509Certificate2 createCertificate(string certPEM) |