TenSEAL
TenSEAL copied to clipboard
A library for doing homomorphic encryption operations on tensors
## Description Bazel is compatbile with Windows, but the workflows fail on that platform. There are several issues to fix: - SEAL build: we should be able to compile SEAL...
## What? We should add a tutorial explaining how to set the parameters properly to achieve the required computation (maybe even for different level of security) ## Additional Context A...
We should add a flag for disabling/enabling SEALAPI full bindings from the build.
## Feature Description It would be nice to expose the rotate vector function through the tensor API. This would provide users with a more intuitive method of rotating vectors as...
fixing typo (substraction) ## Description Please include a summary of the change, the motivation, and any additional context that will help others understand your PR. If it closes one or...
fix typo
## Description Please include a summary of the change, the motivation, and any additional context that will help others understand your PR. If it closes one or more open issues,...
Hello, In the tutorials Logistic Regression model is built using the Tenseal for a Classification problem. I'm planning to implement with Linear Regression using Tenseal for a Regression Dataset. I'm...
## Question ``` import numpy as np import tenseal as ts def keyGen(key_length=4096): bits_scale = 24 coefficient_modulus = [30, 24, bits_scale, 30] if key_length == 8192: # bits_scale = 26...