培训考核三期,新版培训,网页版培训登录器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

46 lines
1.2 KiB

#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
#pragma warning disable
using System;
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Tls
{
/// <summary>RFC 5705</summary>
public abstract class ExporterLabel
{
/*
* RFC 5246
*/
public const string client_finished = "client finished";
public const string server_finished = "server finished";
public const string master_secret = "master secret";
public const string key_expansion = "key expansion";
/*
* RFC 5216
*/
public const string client_EAP_encryption = "client EAP encryption";
/*
* RFC 5281
*/
public const string ttls_keying_material = "ttls keying material";
public const string ttls_challenge = "ttls challenge";
/*
* RFC 5764
*/
public const string dtls_srtp = "EXTRACTOR-dtls_srtp";
/*
* RFC 7627
*/
public const string extended_master_secret = "extended master secret";
/*
* draft-ietf-tokbind-protocol-16
*/
public const string token_binding = "EXPORTER-Token-Binding";
}
}
#pragma warning restore
#endif