Skip to main content

Static (version of) Shamir's Secret Sharing Scheme

Project description

Static (version of) Shamir’s Secret Sharing Scheme

PyPI version and link.

Package Installation and Usage

The package is available on PyPI:

python -m pip install sssss

The library can be imported in the usual ways:

import sssss
from sssss import sssss
from sssss import share, reconstruct

secret = b'Correct. Horse. Battery. Staple.'
shares = share(secret, minimum=3, shares=6)

print('Secret:', secret)
print('Shares:')
if shares:
    for share in shares:
        print('', '', share)

print('Secret recovered from minimum subset of shares:',
      reconstruct(shares[:3]))
print('Secret recovered from a different subset of shares:',
      reconstruct([shares[1], shares[3], shares[5]]))

Versioning

Beginning with version 0.2.0, the version number format for this library and the changes to the library associated with version number increments conform with Semantic Versioning 2.0.0.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sssss-0.1.2.tar.gz (3.3 kB view details)

Uploaded Source

File details

Details for the file sssss-0.1.2.tar.gz.

File metadata

  • Download URL: sssss-0.1.2.tar.gz
  • Upload date:
  • Size: 3.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.5

File hashes

Hashes for sssss-0.1.2.tar.gz
Algorithm Hash digest
SHA256 f672ac6995ffa68a51332986c2c620293ec791a7e646da1743089277ea4b4c90
MD5 9d78922e03ee9788bb7c7195a90a724c
BLAKE2b-256 4ee002ab7538bdd880aa3fb1df8601d8bed119adfb9beca4557c0e7137e87b10

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page