blob: aa33c680d377be17c2afd919916110b63c5de54a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
using System;
using System.IO;
using Org.BouncyCastle.Tls.Crypto;
namespace Org.BouncyCastle.Tls
{
/// <summary>Base interface for an object that can calculate a handshake hash.</summary>
public interface TlsHandshakeHash
: TlsHash
{
/// <exception cref="IOException"/>
void CopyBufferTo(Stream output);
void ForceBuffering();
void NotifyPrfDetermined();
void TrackHashAlgorithm(int cryptoHashAlgorithm);
void SealHashAlgorithms();
TlsHandshakeHash StopTracking();
TlsHash ForkPrfHash();
byte[] GetFinalHash(int cryptoHashAlgorithm);
}
}
|