Initial commit

This commit is contained in:
unknown
2026-05-14 00:42:39 +02:00
commit dae8a0a4a1
37 changed files with 1226 additions and 0 deletions

14
payload/structs/struct.v Normal file
View File

@@ -0,0 +1,14 @@
module structs
import x.crypto.curve25519
pub struct KeyPair {
pub:
secret &curve25519.PrivateKey
public &curve25519.PublicKey
}
pub struct op_codes {
pub:
op_code string
}