add all
This commit is contained in:
46
Packages/com.tivadar.best.http/Runtime/3rdParty/BouncyCastle/tls/ExporterLabel.cs
vendored
Normal file
46
Packages/com.tivadar.best.http/Runtime/3rdParty/BouncyCastle/tls/ExporterLabel.cs
vendored
Normal file
@@ -0,0 +1,46 @@
|
||||
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
|
||||
#pragma warning disable
|
||||
using System;
|
||||
|
||||
namespace Best.HTTP.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
|
||||
Reference in New Issue
Block a user