123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239 |
- #region License
- /*
- * ServerSslConfiguration.cs
- *
- * The MIT License
- *
- * Copyright (c) 2014 liryna
- * Copyright (c) 2014-2023 sta.blockhead
- *
- * 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.
- */
- #endregion
- #region Authors
- /*
- * Authors:
- * - Liryna <liryna.stark@gmail.com>
- */
- #endregion
- using System;
- using System.Net.Security;
- using System.Security.Authentication;
- using System.Security.Cryptography.X509Certificates;
- namespace WebSocketSharp.Net
- {
- /// <summary>
- /// Stores the parameters for the <see cref="SslStream"/> used by servers.
- /// </summary>
- public class ServerSslConfiguration
- {
- #region Private Fields
- private bool _checkCertRevocation;
- private bool _clientCertRequired;
- private RemoteCertificateValidationCallback _clientCertValidationCallback;
- private SslProtocols _enabledSslProtocols;
- private X509Certificate2 _serverCert;
- #endregion
- #region Public Constructors
- /// <summary>
- /// Initializes a new instance of the <see cref="ServerSslConfiguration"/>
- /// class.
- /// </summary>
- public ServerSslConfiguration ()
- {
- _enabledSslProtocols = SslProtocols.None;
- }
- /// <summary>
- /// Initializes a new instance of the <see cref="ServerSslConfiguration"/>
- /// class copying from the specified configuration.
- /// </summary>
- /// <param name="configuration">
- /// A <see cref="ServerSslConfiguration"/> from which to copy.
- /// </param>
- /// <exception cref="ArgumentNullException">
- /// <paramref name="configuration"/> is <see langword="null"/>.
- /// </exception>
- public ServerSslConfiguration (ServerSslConfiguration configuration)
- {
- if (configuration == null)
- throw new ArgumentNullException ("configuration");
- _checkCertRevocation = configuration._checkCertRevocation;
- _clientCertRequired = configuration._clientCertRequired;
- _clientCertValidationCallback = configuration._clientCertValidationCallback;
- _enabledSslProtocols = configuration._enabledSslProtocols;
- _serverCert = configuration._serverCert;
- }
- #endregion
- #region Public Properties
- /// <summary>
- /// Gets or sets a value indicating whether the certificate revocation
- /// list is checked during authentication.
- /// </summary>
- /// <value>
- /// <para>
- /// <c>true</c> if the certificate revocation list is checked during
- /// authentication; otherwise, <c>false</c>.
- /// </para>
- /// <para>
- /// The default value is <c>false</c>.
- /// </para>
- /// </value>
- public bool CheckCertificateRevocation {
- get {
- return _checkCertRevocation;
- }
- set {
- _checkCertRevocation = value;
- }
- }
- /// <summary>
- /// Gets or sets a value indicating whether the client is asked for
- /// a certificate for authentication.
- /// </summary>
- /// <value>
- /// <para>
- /// <c>true</c> if the client is asked for a certificate for
- /// authentication; otherwise, <c>false</c>.
- /// </para>
- /// <para>
- /// The default value is <c>false</c>.
- /// </para>
- /// </value>
- public bool ClientCertificateRequired {
- get {
- return _clientCertRequired;
- }
- set {
- _clientCertRequired = value;
- }
- }
- /// <summary>
- /// Gets or sets the callback used to validate the certificate supplied by
- /// the client.
- /// </summary>
- /// <remarks>
- /// The certificate is valid if the callback returns <c>true</c>.
- /// </remarks>
- /// <value>
- /// <para>
- /// A <see cref="RemoteCertificateValidationCallback"/> delegate.
- /// </para>
- /// <para>
- /// The delegate invokes the method called when the server validates
- /// the certificate.
- /// </para>
- /// <para>
- /// The default value is a delegate that invokes a method that only
- /// returns <c>true</c>.
- /// </para>
- /// </value>
- public RemoteCertificateValidationCallback ClientCertificateValidationCallback {
- get {
- if (_clientCertValidationCallback == null)
- _clientCertValidationCallback = defaultValidateClientCertificate;
- return _clientCertValidationCallback;
- }
- set {
- _clientCertValidationCallback = value;
- }
- }
- /// <summary>
- /// Gets or sets the enabled versions of the SSL/TLS protocols.
- /// </summary>
- /// <value>
- /// <para>
- /// Any of the <see cref="SslProtocols"/> enum values.
- /// </para>
- /// <para>
- /// It represents the enabled versions of the SSL/TLS protocols.
- /// </para>
- /// <para>
- /// The default value is <see cref="SslProtocols.None"/>.
- /// </para>
- /// </value>
- public SslProtocols EnabledSslProtocols {
- get {
- return _enabledSslProtocols;
- }
- set {
- _enabledSslProtocols = value;
- }
- }
- /// <summary>
- /// Gets or sets the certificate used to authenticate the server.
- /// </summary>
- /// <value>
- /// <para>
- /// A <see cref="X509Certificate2"/> that represents an X.509 certificate.
- /// </para>
- /// <para>
- /// <see langword="null"/> if not present.
- /// </para>
- /// <para>
- /// The default value is <see langword="null"/>.
- /// </para>
- /// </value>
- public X509Certificate2 ServerCertificate {
- get {
- return _serverCert;
- }
- set {
- _serverCert = value;
- }
- }
- #endregion
- #region Private Methods
- private static bool defaultValidateClientCertificate (
- object sender,
- X509Certificate certificate,
- X509Chain chain,
- SslPolicyErrors sslPolicyErrors
- )
- {
- return true;
- }
- #endregion
- }
- }
|