fhe-math 0.1.0-beta.4

Mathematical utilities for the fhe.rs library
Documentation
syntax = "proto3";

package fhers;

message Rq {
    enum Representation {
        UNKNOWN = 0;
        POWERBASIS = 1;
        NTT = 2;
        NTTSHOUP = 3;
    }
    Representation representation = 1;
    uint32 degree = 2;
    bytes coefficients = 3;
    bool allow_variable_time = 4;
}