zerjioang / ssscomp

Secret Sharing & Secure Computation Library for Go

Home Page:https://www.buymeacoffee.com/zerjioang

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ssscomp

Secret Sharing & Secure Computation Library for Go

Build Status Go Report Card Software License Build Status

Package ssscomp is a High Performance, Pure Go Secret Sharing & Secure Computation Library including support for several HE (Homomorphic Encryption) algorithms. It provides a Development Kit for Python too!

Install

Copyright (C) 2019 Sergio Anguita
See Contributors.md for a complete list of contributors.  
Licensed under the MIT License.  
go get github.com/zerjioang/ssscomp

Install for Python

Copyright (C) 2019 Sergio Anguita
See Contributors.md for a complete list of contributors.  
Licensed under the MIT License.  

This package is designed to be compatible with current Machine Learning frameworks such as: pandas, keras or tensorflow Use pip install ssscomp to download the package to you environment. Development Python SDK is provided with examples at sdk/python/example

Features

Supported Features Properties Limitations Reference papers
Additive Sharing Schema Secret Sharing for SMPC
Shamir Secret Sharing Schema Secret Sharing for SMPC
Unpadded RSA Homomorphic Encryption mul only
ElGamal Homomorphic Encryption add only
BGN Cryptosystem Homomorphic Encryption mul, add only

Secret Sharing

Description

The most common examples of finite fields are given by the integers mod p when p is a prime number.

Packed sharing

If many secrets are to be secret shared, it may be beneficial to use the packed scheme where several secrets are packed into each share. While still very computational efficient, one downside is that the parameters are somewhat restricted.

Specifically, the parameters are split in scheme parameters and implementation parameters:

  • the former, like in Shamir sharing, determines the abstract properties of the scheme, yet now also with a secret_count specifying how many secrets are to be packed into each share; the reconstruction limit is implicitly defined as secret_count + threshold + 1
  • the latter is related to the implementation (currently based on the Fast Fourier Transform) and requires not only a prime specifying the field, but also two principal roots of unity within that field, which must be respectively a power of 2 and a power of 3

Due to this increased complexity, providing helper functions for finding suitable parameters are in progress. For now, a few fixed fields are included in the packed module as illustrated in the example below:

  • PSS_4_8_3, PSS_4_26_3, PSS_155_728_100, PSS_155_19682_100

with format PSS_T_N_D for sharing D secrets into N shares with a threshold of T.

Homomorphic properties

Both the Shamir and the packed scheme enjoy certain homomorphic properties: shared secrets can be transformed by manipulating the shares. Both addition and multiplications work, yet notice that the reconstruction limit in the case of multiplication goes up by a factor of two for each application.

Other SSS Implementations

Homomorphic Encryption Algorithms

This library has support for current homomorphic algorithms:

  • Unpadded RSA
  • ElGamal
  • Paillier
  • DGHV

References

Other references

License

Copyright (c) 2019 Sergio Anguita

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

  • Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
  • Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
  • Uses GPL license described below

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

About

Secret Sharing & Secure Computation Library for Go

https://www.buymeacoffee.com/zerjioang

License:MIT License


Languages

Language:Go 88.4%Language:Python 7.4%Language:Shell 1.7%Language:C++ 1.4%Language:Assembly 0.9%Language:Dockerfile 0.1%Language:CSS 0.1%