2
0
mirror of https://github.com/esiur/esiur-dart.git synced 2026-04-04 02:08:21 +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

@@ -1,16 +1,27 @@
class IIPAuthPacketAction
{
// Authenticate
static const int AuthenticateHash = 0;
//Challenge,
//CertificateRequest,
//CertificateReply,
//EstablishRequest,
//EstablishReply
static const int NewConnection = 0x20;
static const int ResumeConnection = 0x21;
static const int ConnectionEstablished = 0x28;
static const int AuthenticateHash = 0x80;
static const int AuthenticatePublicHash = 0x81;
static const int AuthenticatePrivateHash = 0x82;
static const int AuthenticatePublicPrivateHash = 0x83;
static const int AuthenticatePrivateHashCert = 0x88;
static const int AuthenticatePublicPrivateHashCert = 0x89;
static const int IAuthPlain = 0x90;
static const int IAuthHashed = 0x91;
static const int IAuthEncrypted = 0x92;
static const int EstablishNewSession = 0x98;
static const int EstablishResumeSession = 0x99;
static const int EncryptKeyExchange = 0xA0;
static const int RegisterEndToEndKey = 0xA8;
static const int RegisterHomomorphic = 0xA9;
}