Code Monkey home page Code Monkey logo

threshold-encrypt's Introduction

Threshold Encryption using secp256k1

A pure Java implementation of a Threshold Encryption scheme.

This particular threshold encryption is a way of encoding the data by a party, such that it can be decrypted only by multiple participants collaborating.

T out of N participants need to be part of the threshold decryption scheme to be able to retrieve the plaintext.

Part of Weavechain: The Layer-0 For Data

Usage

Gradle Groovy DSL

implementation 'com.weavechain:threshold-encrypt:1.0.1'

Gradle Kotlin DSL

implementation("com.weavechain:threshold-encrypt:1.0.1")
Apache Maven
<dependency>
  <groupId>com.weavechain</groupId>
  <artifactId>threshold-encrypt</artifactId>
  <version>1.0.1</version>
</dependency>

Sample

Number encryption

int T = 3;
int N = 5;
ThresholdEncSecp tsig = new ThresholdEncSecp(T, N);

ThresholdEncSecpParams params = tsig.generate(null);

List<byte[]> partialShares = params.getPrivateShares().subList(0, 3);
Set<Integer> nodes = Set.of(0, 1, 2);

boolean check = ThresholdEncSecp.verify(partialShares.get(0), 1, params.getPublicShares());
System.out.println(check ? "Success" : "Fail");

BigInteger value = new BigInteger("1234567890");
byte[] enc = ThresholdEncSecp.encrypt(params.getPublicKey(), value);

byte[] privateKey = tsig.reconstruct(partialShares, nodes);
BigInteger decoded = ThresholdEncSecp.decrypt(privateKey, enc);

boolean match = Objects.equals(decoded, value);
System.out.println(match ? "Success" : "Fail");

Message encryption

int T = 3;
int N = 5;
ThresholdEncSecp tsig = new ThresholdEncSecp(T, N);

ThresholdEncSecpParams params = tsig.generate(null);

List<byte[]> partialShares = params.getPrivateShares().subList(0, 2);
partialShares.add(params.getPrivateShares().get(4));
Set<Integer> nodes = Set.of(0, 1, 4);

boolean check = ThresholdEncSecp.verify(partialShares.get(0), 1, params.getPublicShares());
System.out.println(check ? "Success" : "Fail");

String value = "test message to be decrypted by t out of n recipients";
byte[] enc = ThresholdEncSecp.encrypt(params.getPublicKey(), value);

byte[] privateKey = tsig.reconstruct(partialShares, nodes);
String decoded = ThresholdEncSecp.decryptString(privateKey, enc);

boolean match = Objects.equals(decoded, value);
System.out.println(match ? "Success" : "Fail");

Weavechain

Read more about Weavechain at https://docs.weavechain.com

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.