Files
esiur-dotnet/Libraries/Esiur/Net/Packets/EpAuthPacketHeader.cs
T
2026-08-21 11:17:55 +03:00

34 lines
748 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,
MaximumPacketSize,
MaximumAllocationSize,
MaximumCollectionItems,
MaximumTypeMetadataDepth,
MaximumEncryptedRecordSize
}
}