blob: c3aac3297979595f45c44a58adf73aed4932c672 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
using System;
using Org.BouncyCastle.Tls.Crypto;
namespace Org.BouncyCastle.Tls
{
public interface TlsPsk
{
byte[] Identity { get; }
TlsSecret Key { get; }
int PrfAlgorithm { get; }
}
}
|