Context Structure
Context Representation
The context in the Fair Math Computer is a JSON-like object that organizes information into the following sections:
fhe
Contains cryptographic data, including:Public keys.
Rotation keys.
Cryptographic contexts.
args
Represents command-line-style arguments provided to the application during execution.vars
Describes all variables used in the process. Each variable entry includes:id
: Unique identifier for the variable.basetype
: The base type of the variable (e.g.,i32
).is_secret
: A boolean indicating whether the variable is encrypted.is_array
: A boolean indicating whether the variable is an array.storage
: Specifies where the variable's value is stored (e.g.,local
oripfs
).value
: The current value of the variable, either directly or as a reference (e.g., an IPFS hash).
Example Context File
Below is an example of context file:
This structure allows the system to organize and manage cryptographic and process-related information efficiently, ensuring seamless application execution.
Last updated