OpenVector
  • OpenVector
  • Introduction
    • Our Thesis
    • Our Solution
    • Other Approaches
    • Benchmarks
  • Network Architecture
    • Overview
    • Networking
    • Deploy Compute Node
    • Deploy CoFHE Node
    • Deploy Client Node
  • Quick start
    • Overview
    • Setting up Client Node
    • Encrypting Data
    • Tensor Multiplication
    • Decrypting the Ouput
    • Verifying the Output
    • Running the Program
  • Tutorials
    • Building MLP Block
  • Use Cases
    • Confidential LLM Inference
    • Training on Encrypted Data
    • Vector Search on Encrypted Data
    • Encrypted Data Access Control
  • API references
    • CryptoSystem Interface
    • ClientNode Class
    • ComputeRequest Class
    • ComputeResponse Class
  • PYTHON API REFERENCES
    • Overview
    • Tensor
    • nn.Module
    • nn.Functional
  • Contribution
    • Call for Research
    • CoFHE Library
Powered by GitBook
On this page
  1. Network Architecture

Deploy CoFHE Node

PreviousDeploy Compute NodeNextDeploy Client Node

Last updated 6 months ago

To deploy a CoFHE node, execute the node program using the command-line option cofhe_node, followed by specifying your desired IP address and port number for the node to listen on. Additionally, include the IP address and port number of the setup node as the final two arguments in the command.

The command syntax is as follows:

./node cofhe_node <your_ip> <your_port> <setup_node_ip> <setup_node_port>

The cofhe nodes also require server.pem and server_key.pem, these must be located in the current working directory. These files are used for enabling SSL communication. Note - The node program is available in examples directory of , follow the build steps specified in the readme of repository, latter we will also provide already built binaries for the same for popular platforms.

GitHub repository