[System] Port AuthenticatedStream from referencesources
authorAlexander Köplinger <alex.koeplinger@outlook.com>
Thu, 24 Dec 2015 01:01:51 +0000 (02:01 +0100)
committerAlexander Köplinger <alex.koeplinger@outlook.com>
Thu, 24 Dec 2015 01:01:51 +0000 (02:01 +0100)
mcs/class/System/System.Net.Security/AuthenticatedStream.cs [deleted file]
mcs/class/System/System.Net.Security/AuthenticationLevel.cs [deleted file]
mcs/class/System/System.Net.Security/ProtectionLevel.cs [deleted file]
mcs/class/System/System.dll.sources
mcs/class/System/mobile_System.dll.sources

diff --git a/mcs/class/System/System.Net.Security/AuthenticatedStream.cs b/mcs/class/System/System.Net.Security/AuthenticatedStream.cs
deleted file mode 100644 (file)
index 6e0481d..0000000
+++ /dev/null
@@ -1,90 +0,0 @@
-//
-// System.Net.Security.AuthenticatedStream.cs
-//
-// Authors:
-//     Tim Coleman (tim@timcoleman.com)
-//
-// Copyright (C) Tim Coleman, 2004
-// (c) 2004 Novell, Inc. (http://www.novell.com)
-//
-
-//
-// Permission is hereby granted, free of charge, to any person obtaining
-// a copy of this software and associated documentation files (the
-// "Software"), to deal in the Software without restriction, including
-// without limitation the rights to use, copy, modify, merge, publish,
-// distribute, sublicense, and/or sell copies of the Software, and to
-// permit persons to whom the Software is furnished to do so, subject to
-// the following conditions:
-// 
-// The above copyright notice and this permission notice shall be
-// included in all copies or substantial portions of the Software.
-// 
-// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
-// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
-// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
-// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-//
-
-
-using System.IO;
-
-namespace System.Net.Security 
-{
-       public abstract class AuthenticatedStream : Stream
-       {
-               #region Fields
-
-               Stream innerStream;
-               bool leaveStreamOpen;
-
-               #endregion // Fields
-
-               #region Constructors
-
-               protected AuthenticatedStream (Stream innerStream, bool leaveInnerStreamOpen)
-               {
-                       this.innerStream = innerStream;
-                       this.leaveStreamOpen = leaveInnerStreamOpen;
-               }
-
-               #endregion // Constructors
-
-               #region Properties
-
-               protected Stream InnerStream { 
-                       get { return innerStream; }
-               }
-
-               public abstract bool IsAuthenticated { get; }
-               public abstract bool IsEncrypted { get; }
-               public abstract bool IsMutuallyAuthenticated { get; }
-               public abstract bool IsServer { get; }
-               public abstract bool IsSigned { get; }
-
-               public bool LeaveInnerStreamOpen {
-                       get {
-                               return leaveStreamOpen;
-                       }
-               }
-               
-               #endregion // Properties
-
-               #region Methods
-
-               protected override void Dispose (bool disposing)
-               {
-                       if (disposing && innerStream != null){
-                               if (!leaveStreamOpen)
-                                       innerStream.Close ();
-                               innerStream = null;
-                       }
-               }
-
-               #endregion // Methods
-       }
-}
-
diff --git a/mcs/class/System/System.Net.Security/AuthenticationLevel.cs b/mcs/class/System/System.Net.Security/AuthenticationLevel.cs
deleted file mode 100644 (file)
index 39c7718..0000000
+++ /dev/null
@@ -1,42 +0,0 @@
-//
-// System.Net.Security.AuthenticationLevel.cs
-//
-// Authors:
-//     Tim Coleman (tim@timcoleman.com)
-//
-// Copyright (C) Tim Coleman, 2004
-// (c) 2004 Novell, Inc. (http://www.novell.com)
-//
-
-//
-// Permission is hereby granted, free of charge, to any person obtaining
-// a copy of this software and associated documentation files (the
-// "Software"), to deal in the Software without restriction, including
-// without limitation the rights to use, copy, modify, merge, publish,
-// distribute, sublicense, and/or sell copies of the Software, and to
-// permit persons to whom the Software is furnished to do so, subject to
-// the following conditions:
-// 
-// The above copyright notice and this permission notice shall be
-// included in all copies or substantial portions of the Software.
-// 
-// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
-// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
-// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
-// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-//
-
-
-namespace System.Net.Security 
-{
-       public enum AuthenticationLevel 
-       {
-               None,
-               MutualAuthRequested,
-               MutualAuthRequired,
-       }
-}
-
diff --git a/mcs/class/System/System.Net.Security/ProtectionLevel.cs b/mcs/class/System/System.Net.Security/ProtectionLevel.cs
deleted file mode 100644 (file)
index 8483567..0000000
+++ /dev/null
@@ -1,41 +0,0 @@
-//
-// System.Net.Security.ProtectionLevel.cs
-//
-// Authors:
-//     Tim Coleman (tim@timcoleman.com)
-//
-// Copyright (C) Tim Coleman, 2004
-// (c) 2004 Novell, Inc. (http://www.novell.com)
-//
-
-//
-// Permission is hereby granted, free of charge, to any person obtaining
-// a copy of this software and associated documentation files (the
-// "Software"), to deal in the Software without restriction, including
-// without limitation the rights to use, copy, modify, merge, publish,
-// distribute, sublicense, and/or sell copies of the Software, and to
-// permit persons to whom the Software is furnished to do so, subject to
-// the following conditions:
-// 
-// The above copyright notice and this permission notice shall be
-// included in all copies or substantial portions of the Software.
-// 
-// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
-// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
-// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
-// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-//
-
-namespace System.Net.Security 
-{
-       public enum ProtectionLevel 
-       {
-               None,
-               Sign,
-               EncryptAndSign,
-       }
-}
-
index 369fa12eec82a6ae4db604c60e5770f56f25805a..dcc3937eaca66fbde8e1536c00eb84be6911e85d 100644 (file)
@@ -400,12 +400,11 @@ System/NetPipeStyleUriParser.cs
 System.Net/ProtocolViolationException.cs
 System.Net/RequestStream.cs
 System.Net/ResponseStream.cs
-System.Net.Security/AuthenticatedStream.cs
-System.Net.Security/AuthenticationLevel.cs
+../../../external/referencesource/System/net/System/Net/SecureProtocols/AuthenticatedStream.cs
+../../../external/referencesource/System/net/System/Net/SecureProtocols/NegotiateEnumTypes.cs
 System.Net.Security/EncryptionPolicy.cs
 System.Net.Security/LocalCertificateSelectionCallback.cs
 System.Net.Security/NegotiateStream.cs
-System.Net.Security/ProtectionLevel.cs
 System.Net/SecurityProtocolType.cs
 System.Net.Security/RemoteCertificateValidationCallback.cs
 System.Net.Security/SslStream.cs
index d0da0f8faffd94b76ec41e83c0ff90b72f0a8d83..9bc7d84f730d22965df2a7a213bd35cdb91a3d15 100644 (file)
@@ -99,12 +99,11 @@ System.Net.NetworkInformation/TcpStatistics.cs
 System.Net.NetworkInformation/UdpStatistics.cs
 System.Net.NetworkInformation/UnicastIPAddressInformation.cs
 System.Net.NetworkInformation/UnicastIPAddressInformationCollection.cs
-System.Net.Security/AuthenticatedStream.cs
-System.Net.Security/AuthenticationLevel.cs
+../../../external/referencesource/System/net/System/Net/SecureProtocols/AuthenticatedStream.cs
+../../../external/referencesource/System/net/System/Net/SecureProtocols/NegotiateEnumTypes.cs
 System.Net.Security/EncryptionPolicy.cs
 System.Net.Security/LocalCertificateSelectionCallback.cs
 System.Net.Security/NegotiateStream.cs
-System.Net.Security/ProtectionLevel.cs
 System.Net.Security/RemoteCertificateValidationCallback.cs
 System.Net.Security/SslPolicyErrors.cs
 System.Net.Security/SslStream.cs