// Copyright © 2016 The CefSharp Authors. All rights reserved.
//
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
namespace CefSharp
{
///
/// Supported SSL version values. See net/ssl/ssl_connection_status_flags.h
/// for more information.
///
public enum SslVersion
{
///
/// Unknown SSL version.
///
Unknown = 0,
///
/// An enum constant representing the ssl 2 option.
///
Ssl2 = 1,
///
/// An enum constant representing the ssl 3 option.
///
Ssl3 = 2,
///
/// An enum constant representing the TLS 1.0 option.
///
Tls1 = 3,
///
/// An enum constant representing the TLS 1.1 option.
///
Tls1_1 = 4,
///
/// An enum constant representing the TLS 1.2 option.
///
Tls1_2 = 5,
///
/// An enum constant representing the TLS 1.3 option.
///
Tls1_3 = 6,
///
/// An enum constant representing the QUIC option.
///
Quic = 7,
}
}