| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325 |
- //
- // System.Net.Security.SslStream.cs
- //
- // Authors:
- // Tim Coleman ([email protected])
- //
- // 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.
- //
- #if NET_2_0
- using System;
- using System.IO;
- using System.Net;
- using System.Security.Authentication;
- using System.Security.Cryptography.X509Certificates;
- using System.Security.Principal;
- namespace System.Net.Security
- {
- public class SslStream : AuthenticatedStream
- {
- #region Fields
- int readTimeout;
- int writeTimeout;
- #endregion // Fields
- #region Constructors
- [MonoTODO]
- public SslStream (Stream innerStream)
- : base (innerStream, false)
- {
- }
- [MonoTODO]
- public SslStream (Stream innerStream, bool leaveStreamOpen)
- : base (innerStream, leaveStreamOpen)
- {
- }
- [MonoTODO]
- public SslStream (Stream innerStream, bool leaveStreamOpen, RemoteCertificateValidationCallback certValidationCallback)
- : base (innerStream, leaveStreamOpen)
- {
- }
- [MonoTODO]
- public SslStream (Stream innerStream, bool leaveStreamOpen, RemoteCertificateValidationCallback certValidationCallback, LocalCertificateSelectionCallback certSelectionCallback)
- : base (innerStream, leaveStreamOpen)
- {
- }
- #endregion // Constructors
- #region Properties
- public override bool CanRead {
- get { return InnerStream.CanRead; }
- }
- public override bool CanSeek {
- get { return InnerStream.CanSeek; }
- }
- [MonoTODO]
- public override bool CanTimeout {
- get { throw new NotImplementedException (); }
- }
- public override bool CanWrite {
- get { return InnerStream.CanWrite; }
- }
- [MonoTODO]
- public virtual bool CheckCertRevocationStatus {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public virtual CipherAlgorithmType CipherAlgorithm {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public virtual int CipherStrength {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public virtual HashAlgorithmType HashAlgorithm {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public virtual int HashStrength {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public virtual TokenImpersonationLevel ImpersonationLevel {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public override bool IsAuthenticated {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public override bool IsEncrypted {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public override bool IsMutuallyAuthenticated {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public override bool IsServer {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public override bool IsSigned {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public virtual ExchangeAlgorithmType KeyExchangeAlgorithm {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public virtual int KeyExchangeStrength {
- get { throw new NotImplementedException (); }
- }
- public override long Length {
- get { return InnerStream.Length; }
- }
- [MonoTODO]
- public virtual X509Certificate LocalCertificate {
- get { throw new NotImplementedException (); }
- }
- public override long Position {
- get { return InnerStream.Position; }
- set { InnerStream.Position = value; }
- }
- public override int ReadTimeout {
- get { return readTimeout; }
- set { readTimeout = value; }
- }
- [MonoTODO]
- public virtual X509Certificate RemoteCertificate {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public virtual SslProtocols SslProtocol {
- get { throw new NotImplementedException (); }
- }
- public override int WriteTimeout {
- get { return writeTimeout; }
- set { writeTimeout = value; }
- }
- #endregion // Properties
- #region Methods
- [MonoTODO]
- public virtual IAsyncResult BeginClientAuthenticate (string targetHost, AsyncCallback asyncCallback, object asyncState)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public virtual IAsyncResult BeginClientAuthenticate (string targetHost, X509CertificateCollection clientCertificates, SslProtocols sslProtocolType, bool checkCertificateRevocation, AsyncCallback asyncCallback, object asyncState)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public override IAsyncResult BeginRead (byte[] buffer, int offset, int count, AsyncCallback asyncCallback, object asyncState)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public virtual IAsyncResult BeginServerAuthenticate (X509Certificate serverCertificate, AsyncCallback callback, object asyncState)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public virtual IAsyncResult BeginServerAuthenticate (X509Certificate serverCertificate, bool clientCertificateRequired, SslProtocols sslProtocolType, bool checkCertificateRevocation, AsyncCallback callback, object asyncState)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public override IAsyncResult BeginWrite (byte[] buffer, int offset, int count, AsyncCallback asyncCallback, object asyncState)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public virtual void ClientAuthenticate ()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public virtual void ClientAuthenticate (string targetHost)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public virtual void ClientAuthenticate (string targetHost, X509CertificateCollection clientCertificates, SslProtocols sslProtocolType, bool checkCertificateRevocation)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public override void Close ()
- {
- InnerStream.Close ();
- }
- [MonoTODO]
- public virtual void EndClientAuthenticate (IAsyncResult asyncResult)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public override int EndRead (IAsyncResult asyncResult)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public virtual void EndServerAuthenticate (IAsyncResult asyncResult)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public override void EndWrite (IAsyncResult asyncResult)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public override void Flush ()
- {
- InnerStream.Flush ();
- }
- [MonoTODO]
- public override int Read (byte[] buffer, int offset, int count)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public override long Seek (long offset, SeekOrigin origin)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public override void SetLength (long value)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public override void Write (byte[] buffer, int offset, int count)
- {
- throw new NotImplementedException ();
- }
- public void Write (byte[] buffer)
- {
- Write (buffer, 0, buffer.Length);
- }
- #endregion // Methods
- }
- }
- #endif
|