HEhub is the first open source homomorphic encryption library in China, which can perform basic operations such as addition and multiplication on the basis of ciphertext, and obtain the same results as plaintext, so as to achieve the goal of data being available and invisible. The homomorphic library is the basic encryption library in the field of privacy computing. Example usage: #include “fhe/ckks/ckks.h” #include #include using namespace hehub; int main() { int precision_bits = 30; auto params = ckks::create_params(4096, precision_bits); CkksSk sk(params) ;… |
#Homomorphic #encryption #library #HEhub