Implemented encryption for embedded profile.

This commit is contained in:
Jakob Friedl
2025-08-19 20:03:34 +02:00
parent 72fcb0d610
commit b023fca124
17 changed files with 79 additions and 49 deletions

View File

@@ -1,7 +1,6 @@
import strutils, strformat, times
import strutils, times
import ../utils
import ../../common/[types, utils, sequence, crypto]
import ../../common/[types, sequence, crypto, utils]
proc parseInput*(input: string): seq[string] =
var i = 0
@@ -36,15 +35,15 @@ proc parseInput*(input: string): seq[string] =
proc parseArgument*(argument: Argument, value: string): TaskArg =
var result: TaskArg
result.argType = cast[uint8](argument.argumentType)
var arg: TaskArg
arg.argType = cast[uint8](argument.argumentType)
case argument.argumentType:
of INT:
# Length: 4 bytes
let intValue = cast[uint32](parseUInt(value))
result.data = @[byte(intValue and 0xFF), byte((intValue shr 8) and 0xFF), byte((intValue shr 16) and 0xFF), byte((intValue shr 24) and 0xFF)]
arg.data = @[byte(intValue and 0xFF), byte((intValue shr 8) and 0xFF), byte((intValue shr 16) and 0xFF), byte((intValue shr 24) and 0xFF)]
of LONG:
# Length: 8 bytes
@@ -52,26 +51,26 @@ proc parseArgument*(argument: Argument, value: string): TaskArg =
let intValue = cast[uint64](parseUInt(value))
for i in 0..7:
data[i] = byte((intValue shr (i * 8)) and 0xFF)
result.data = data
arg.data = data
of BOOL:
# Length: 1 byte
if value == "true":
result.data = @[1'u8]
arg.data = @[1'u8]
elif value == "false":
result.data = @[0'u8]
arg.data = @[0'u8]
else:
raise newException(ValueError, "Invalid value for boolean argument.")
of STRING:
result.data = cast[seq[byte]](value)
arg.data = cast[seq[byte]](value)
of BINARY:
# Read file as binary stream
discard
return result
return arg
proc createTask*(cq: Conquest, command: Command, arguments: seq[string]): Task =