项目作者: mynameisvinn

项目描述 :
mpc implementation
高级语言: Jupyter Notebook
项目地址: git://github.com/mynameisvinn/Kryptonite.git
创建时间: 2020-11-18T20:36:37Z
项目社区:https://github.com/mynameisvinn/Kryptonite

开源协议:

下载


Kryptonite

Kryptonite is a partial re-implementation of facebook’s crypten library for multi-party computing. It lets you add two numbers A and B without knowing either A or B.

Example

  1. from Kryptonite import Kryptonite
  2. A = Kryptonite(1)
  3. B = Kryptonite(2)
  4. C = A + B
  5. C.get_plain_text() # prints 3.0