Code Monkey home page Code Monkey logo

mdltoolkit's People

Contributors

fionser avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar

mdltoolkit's Issues

Negative subtraction is not possible.

Hello,
I tried subtracting 3 with 6 and I got a result as 4294967293 rather than -3 . Can you please tell me whether subtraction between two numbers is possible that results in a negative number ? Thanks.

Code :

const int minimum_lambda = 110;
auto params = new_default_gate_bootstrapping_parameters(minimum_lambda);
uint32_t seed[] = { 314, 1592, 657 };
tfhe_random_generator_setSeed(seed, 3);
auto key = new_random_gate_bootstrapping_secret_keyset(params);
mdl::TFHEEncryptor encryptor(key);
mdl::TFHEDecryptor decryptor(key->lwe_key);
Integer<TFHECtxt> a(32), b(32);
a.encrypt(3, &encryptor);
b.encrypt(6, &encryptor);
a.sub(b);
std::cout << "Final answer: " << a.decrypt(&decryptor) << "\n";
delete_gate_bootstrapping_secret_keyset(key);
delete_gate_bootstrapping_parameters(params);

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.