sam701 / secret-sharing

Secrets sharing with Shamir's secret scheme

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

secret-sharing

Secrets sharing with Shamir's secret scheme

This is a wrapper around the Vault's implementation of the Shamir's scheme.

Build

glide install
go install

Usage

Split file

To split a file into 3 parts with threshold (number of parts required to combine the original file) 2:

secret-sharing split --parts 3 --threshold 2 <file to split>

Combine file

To combine a file from 2 parts:

secret-sharing combine --output <file name> <part1> <part2>

About

Secrets sharing with Shamir's secret scheme


Languages

Language:Go 100.0%