init commit
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
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);
|
||||
}
|
||||
Reference in New Issue
Block a user