536cd135cc
Former-commit-id: 5624ac747d633e885131e8349322922b6a59baaa
53 lines
1.3 KiB
C#
53 lines
1.3 KiB
C#
#if SECURITY_DEP && MONO_FEATURE_APPLETLS
|
|
//
|
|
// AppleTlsStream.cs
|
|
//
|
|
// Author:
|
|
// Martin Baulig <martin.baulig@xamarin.com>
|
|
//
|
|
// Copyright (c) 2016 Xamarin, Inc.
|
|
//
|
|
|
|
#if MONO_SECURITY_ALIAS
|
|
extern alias MonoSecurity;
|
|
#endif
|
|
|
|
using System;
|
|
using System.IO;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using System.Net.Security;
|
|
using System.Security.Authentication;
|
|
using System.Security.Cryptography.X509Certificates;
|
|
|
|
using MNS = Mono.Net.Security;
|
|
#if MONO_SECURITY_ALIAS
|
|
using MonoSecurity::Mono.Security.Interface;
|
|
#else
|
|
using Mono.Security.Interface;
|
|
#endif
|
|
|
|
namespace Mono.AppleTls
|
|
{
|
|
class AppleTlsStream : MNS.MobileAuthenticatedStream
|
|
{
|
|
public AppleTlsStream (Stream innerStream, bool leaveInnerStreamOpen, SslStream owner,
|
|
MonoTlsSettings settings, MonoTlsProvider provider)
|
|
: base (innerStream, leaveInnerStreamOpen, owner, settings, provider)
|
|
{
|
|
}
|
|
|
|
protected override MNS.MobileTlsContext CreateContext (
|
|
bool serverMode, string targetHost, SslProtocols enabledProtocols,
|
|
X509Certificate serverCertificate, X509CertificateCollection clientCertificates,
|
|
bool askForClientCert)
|
|
{
|
|
return new AppleTlsContext (
|
|
this, serverMode, targetHost,
|
|
enabledProtocols, serverCertificate,
|
|
clientCertificates, askForClientCert);
|
|
}
|
|
}
|
|
}
|
|
#endif
|