feature: Initial commit.

This commit is contained in:
greysoh 2024-10-19 14:49:24 -04:00
commit c6c407d205
Signed by: imterah
GPG key ID: 8FA7DD57BA6CEA37
12 changed files with 1402 additions and 0 deletions

19
commons/enum.go Normal file
View file

@ -0,0 +1,19 @@
package commons
const (
SendPublicKey = iota
SwitchToSymmetricKey
ClientSendHost
GetSigningServers
GetTrustedDomains
InitiateForwarding
)
const (
XChaCha20Poly1305 = iota
)
const (
BitLimit24 = 16_777_215
BitLimit16 = 65535
)