mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2026-07-30 17:30:40 +00:00
29 lines
588 B
C#
29 lines
588 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Esiur.Net.Packets
|
|
{
|
|
public enum EpAuthPacketHeader
|
|
{
|
|
Version,
|
|
Domain,
|
|
SupportedAuthentications ,
|
|
SupportedHashAlgorithms,
|
|
SupportedCiphers,
|
|
SupportedCompression,
|
|
SupportedMultiFactorAuthentications,
|
|
CipherType,
|
|
CipherKey,
|
|
SoftwareIdentity,
|
|
Referrer,
|
|
Time,
|
|
IPAddress,
|
|
Identity,
|
|
AuthenticationProtocol,
|
|
AuthenticationData,
|
|
ErrorMessage,
|
|
CipherNonce
|
|
}
|
|
}
|