Files
JJBB/Assets/Plugins/Best HTTP/Source/SecureProtocol/crypto/tls/ExporterLabel.cs

42 lines
1.1 KiB
C#
Raw Normal View History

2024-08-23 15:49:34 +08:00
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
#pragma warning disable
using System;
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.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 static readonly string extended_master_secret = "extended master secret";
}
}
#pragma warning restore
#endif