2
0
mirror of https://github.com/esiur/esiur-dart.git synced 2026-04-04 10:18:20 +00:00
This commit is contained in:
2024-06-22 03:50:54 +03:00
parent 8a30c92e19
commit 26794f08e7
32 changed files with 1508 additions and 595 deletions

View File

@@ -0,0 +1,25 @@
import '../../Data/IntType.dart';
class IIPAuthPacketHeader
{
static UInt8 Version = UInt8(0);
static UInt8 Domain = UInt8(1);
static UInt8 SupportedAuthentications = UInt8(2);
static UInt8 SupportedHashAlgorithms = UInt8(3);
static UInt8 SupportedCiphers = UInt8(4);
static UInt8 SupportedCompression = UInt8(5);
static UInt8 SupportedPersonalAuth = UInt8(6);
static UInt8 Nonce = UInt8(7);
static UInt8 Username = UInt8(8);
static UInt8 TokenIndex = UInt8(9);
static UInt8 CertificateId = UInt8(10);
static UInt8 CachedCertificates = UInt8(11);
static UInt8 CipherType = UInt8(12);
static UInt8 CipherKey = UInt8(13);
static UInt8 SoftwareIdentity = UInt8(14);
static UInt8 Referrer = UInt8(15);
static UInt8 Time = UInt8(16);
static UInt8 Certificate = UInt8(17);
static UInt8 IPv4 = UInt8(18);
}