up
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
|
||||
|
||||
using System;
|
||||
|
||||
namespace Org.BouncyCastle.Crypto.Tls
|
||||
{
|
||||
public interface TlsHandshakeHash
|
||||
: IDigest
|
||||
{
|
||||
void Init(TlsContext context);
|
||||
|
||||
TlsHandshakeHash NotifyPrfDetermined();
|
||||
|
||||
void TrackHashAlgorithm(byte hashAlgorithm);
|
||||
|
||||
void SealHashAlgorithms();
|
||||
|
||||
TlsHandshakeHash StopTracking();
|
||||
|
||||
IDigest ForkPrfHash();
|
||||
|
||||
byte[] GetFinalHash(byte hashAlgorithm);
|
||||
}
|
||||
}
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user