shamir-mnemonic


Nameshamir-mnemonic JSON
Version 0.2.2 PyPI version JSON
download
home_pagehttps://github.com/trezor/python-shamir-mnemonic
SummarySLIP-39 Shamir Mnemonics
upload_time2021-12-07 11:09:55
maintainer
docs_urlNone
authorSatoshi Labs
requires_python>=3.6
license
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            python-shamir-mnemonic
======================

.. image:: https://badge.fury.io/py/shamir-mnemonic.svg
    :target: https://badge.fury.io/py/shamir-mnemonic

Reference implementation of SLIP-0039: Shamir's Secret-Sharing for Mnemonic
Codes

Abstract
--------

This SLIP describes a standard and interoperable implementation of Shamir's
secret sharing (SSS). SSS splits a secret into unique parts which can be
distributed among participants, and requires a specified minimum number of
parts to be supplied in order to reconstruct the original secret. Knowledge of
fewer than the required number of parts does not leak information about the
secret.

Specification
-------------

See https://github.com/satoshilabs/slips/blob/master/slip-0039.md for full
specification.

Security
--------

This implementation is not using any hardening techniques. Secrets are passed in the
open, and calculations are most likely trivially vulnerable to side-channel attacks.

The purpose of this code is to verify correctness of other implementations. **It should
not be used for handling sensitive secrets**.

Installation
------------

With pip from GitHub:

.. code-block:: console

    $ pip3 install shamir-mnemonic

From local checkout for development:

.. code-block:: console

    $ python3 setup.py develop

CLI usage
---------

CLI tool is included as a reference and UX testbed.

**Warning:** this tool makes no attempt to protect sensitive data! Use at your own risk.
If you need this to recover your wallet seeds, make sure to do it on an air-gapped
computer, preferably running a live system such as Tails.

When the :code:`shamir_mnemonic` package is installed, you can use the :code:`shamir`
command:

.. code-block:: console

    $ shamir create 3of5   # create a 3-of-5 set of shares
    $ shamir recover       # interactively recombine shares to get the master secret

You can supply your own master secret as a hexadecimal string:

.. code-block:: console

    $ shamir create 3of5 --master-secret=cb21904441dfd01a392701ecdc25d61c

You can specify a custom scheme. For example, to create three groups, with 2-of-3,
2-of-5, and 4-of-5, and require completion of all three groups, use:

.. code-block:: console

    $ shamir create custom --group-threshold 3 --group 2 3 --group 2 5 --group 4 5

Use :code:`shamir --help` or :code:`shamir create --help` to see all available options.

If you want to run the CLI from a local checkout without installing, use the following
command:

.. code-block:: console

    $ python3 -m shamir_mnemonic.cli

Test vectors
------------

The test vectors in vectors.json are given as a list of triples. The first member of the
triple is a description of the test vector, the second member is a list of mnemonics and
the third member is the master secret which results from combining the mnemonics. The
master secret is encoded as a string containing two hexadecimal digits for each byte. If
the string is empty, then attempting to combine the given set of mnemonics should result
in error. The passphrase "TREZOR" is used for all valid sets of mnemonics.

Changelog
=========

.. default-role:: code

All notable changes to this project will be documented in this file.

The format is based on `Keep a Changelog`_, and this project adheres to
`Semantic Versioning`_.

`Unreleased`_
-------------

No changes yet

.. _Unreleased: https://github.com/trezor/python-shamir-mnemonic/compare/v0.2.2...HEAD


`0.2.2`_ - 2021-12-07
---------------------

Changed
~~~~~~~

- Relaxed Click constraint so that Click 8.x is allowed
- Applied `black` and `flake8` code style

.. _0.2.2: https://github.com/trezor/python-shamir-mnemonic/compare/v0.2.1...v0.2.2


`0.2.1`_ - 2021-02-03
---------------------

.. _0.2.1: https://github.com/trezor/python-shamir-mnemonic/compare/v0.1.0...v0.2.1

Fixed
~~~~~

- Re-released on the correct commit


`0.2.0`_ - 2021-02-03
---------------------

.. _0.2.0: https://github.com/trezor/python-shamir-mnemonic/compare/v0.1.0...v0.2.0

Added
~~~~~

- Introduce `slip_ems` and `recover_ems` to separate password-based encryption from the Shamir Secret recovery
- Introduce classes representing a share and group-common parameters
- Introduce `RecoveryState` class that allows reusing the logic of the `shamir recover` command

Changed
~~~~~~~

- Use `secrets` module instead of `os.urandom`
- Refactor and restructure code into separate modules


0.1.0 - 2019-07-19
------------------

Added
~~~~~

- Initial implementation


.. _Keep a Changelog: https://keepachangelog.com/en/1.0.0/
.. _Semantic Versioning: https://semver.org/spec/v2.0.0.html



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/trezor/python-shamir-mnemonic",
    "name": "shamir-mnemonic",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": "",
    "keywords": "",
    "author": "Satoshi Labs",
    "author_email": "info@satoshilabs.com",
    "download_url": "https://files.pythonhosted.org/packages/08/55/06b3a3f165534b4b04e2ec0fed7030054311d331ede8762c15a852616773/shamir-mnemonic-0.2.2.tar.gz",
    "platform": "",
    "description": "python-shamir-mnemonic\n======================\n\n.. image:: https://badge.fury.io/py/shamir-mnemonic.svg\n    :target: https://badge.fury.io/py/shamir-mnemonic\n\nReference implementation of SLIP-0039: Shamir's Secret-Sharing for Mnemonic\nCodes\n\nAbstract\n--------\n\nThis SLIP describes a standard and interoperable implementation of Shamir's\nsecret sharing (SSS). SSS splits a secret into unique parts which can be\ndistributed among participants, and requires a specified minimum number of\nparts to be supplied in order to reconstruct the original secret. Knowledge of\nfewer than the required number of parts does not leak information about the\nsecret.\n\nSpecification\n-------------\n\nSee https://github.com/satoshilabs/slips/blob/master/slip-0039.md for full\nspecification.\n\nSecurity\n--------\n\nThis implementation is not using any hardening techniques. Secrets are passed in the\nopen, and calculations are most likely trivially vulnerable to side-channel attacks.\n\nThe purpose of this code is to verify correctness of other implementations. **It should\nnot be used for handling sensitive secrets**.\n\nInstallation\n------------\n\nWith pip from GitHub:\n\n.. code-block:: console\n\n    $ pip3 install shamir-mnemonic\n\nFrom local checkout for development:\n\n.. code-block:: console\n\n    $ python3 setup.py develop\n\nCLI usage\n---------\n\nCLI tool is included as a reference and UX testbed.\n\n**Warning:** this tool makes no attempt to protect sensitive data! Use at your own risk.\nIf you need this to recover your wallet seeds, make sure to do it on an air-gapped\ncomputer, preferably running a live system such as Tails.\n\nWhen the :code:`shamir_mnemonic` package is installed, you can use the :code:`shamir`\ncommand:\n\n.. code-block:: console\n\n    $ shamir create 3of5   # create a 3-of-5 set of shares\n    $ shamir recover       # interactively recombine shares to get the master secret\n\nYou can supply your own master secret as a hexadecimal string:\n\n.. code-block:: console\n\n    $ shamir create 3of5 --master-secret=cb21904441dfd01a392701ecdc25d61c\n\nYou can specify a custom scheme. For example, to create three groups, with 2-of-3,\n2-of-5, and 4-of-5, and require completion of all three groups, use:\n\n.. code-block:: console\n\n    $ shamir create custom --group-threshold 3 --group 2 3 --group 2 5 --group 4 5\n\nUse :code:`shamir --help` or :code:`shamir create --help` to see all available options.\n\nIf you want to run the CLI from a local checkout without installing, use the following\ncommand:\n\n.. code-block:: console\n\n    $ python3 -m shamir_mnemonic.cli\n\nTest vectors\n------------\n\nThe test vectors in vectors.json are given as a list of triples. The first member of the\ntriple is a description of the test vector, the second member is a list of mnemonics and\nthe third member is the master secret which results from combining the mnemonics. The\nmaster secret is encoded as a string containing two hexadecimal digits for each byte. If\nthe string is empty, then attempting to combine the given set of mnemonics should result\nin error. The passphrase \"TREZOR\" is used for all valid sets of mnemonics.\n\nChangelog\n=========\n\n.. default-role:: code\n\nAll notable changes to this project will be documented in this file.\n\nThe format is based on `Keep a Changelog`_, and this project adheres to\n`Semantic Versioning`_.\n\n`Unreleased`_\n-------------\n\nNo changes yet\n\n.. _Unreleased: https://github.com/trezor/python-shamir-mnemonic/compare/v0.2.2...HEAD\n\n\n`0.2.2`_ - 2021-12-07\n---------------------\n\nChanged\n~~~~~~~\n\n- Relaxed Click constraint so that Click 8.x is allowed\n- Applied `black` and `flake8` code style\n\n.. _0.2.2: https://github.com/trezor/python-shamir-mnemonic/compare/v0.2.1...v0.2.2\n\n\n`0.2.1`_ - 2021-02-03\n---------------------\n\n.. _0.2.1: https://github.com/trezor/python-shamir-mnemonic/compare/v0.1.0...v0.2.1\n\nFixed\n~~~~~\n\n- Re-released on the correct commit\n\n\n`0.2.0`_ - 2021-02-03\n---------------------\n\n.. _0.2.0: https://github.com/trezor/python-shamir-mnemonic/compare/v0.1.0...v0.2.0\n\nAdded\n~~~~~\n\n- Introduce `slip_ems` and `recover_ems` to separate password-based encryption from the Shamir Secret recovery\n- Introduce classes representing a share and group-common parameters\n- Introduce `RecoveryState` class that allows reusing the logic of the `shamir recover` command\n\nChanged\n~~~~~~~\n\n- Use `secrets` module instead of `os.urandom`\n- Refactor and restructure code into separate modules\n\n\n0.1.0 - 2019-07-19\n------------------\n\nAdded\n~~~~~\n\n- Initial implementation\n\n\n.. _Keep a Changelog: https://keepachangelog.com/en/1.0.0/\n.. _Semantic Versioning: https://semver.org/spec/v2.0.0.html\n\n\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "SLIP-39 Shamir Mnemonics",
    "version": "0.2.2",
    "project_urls": {
        "Homepage": "https://github.com/trezor/python-shamir-mnemonic"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c7f7ae931f264d216055672ba830ad1825c78c58a703b6e60116ace50d006540",
                "md5": "4c2a3e0f8456bb74b23cdfc1b5aeb11f",
                "sha256": "7d9facea70379cad02bab18d4572c0fcd033c9d7effe5da095b9e0944bf5fbbf"
            },
            "downloads": -1,
            "filename": "shamir_mnemonic-0.2.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "4c2a3e0f8456bb74b23cdfc1b5aeb11f",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.6",
            "size": 22563,
            "upload_time": "2021-12-07T11:09:53",
            "upload_time_iso_8601": "2021-12-07T11:09:53.115457Z",
            "url": "https://files.pythonhosted.org/packages/c7/f7/ae931f264d216055672ba830ad1825c78c58a703b6e60116ace50d006540/shamir_mnemonic-0.2.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "085506b3a3f165534b4b04e2ec0fed7030054311d331ede8762c15a852616773",
                "md5": "3451d5c2a7826e6c1a56814f19da4245",
                "sha256": "7fb9b592e5c518192c0b0caa2c2d82e342fddd186693bc64be9647eace1b9182"
            },
            "downloads": -1,
            "filename": "shamir-mnemonic-0.2.2.tar.gz",
            "has_sig": false,
            "md5_digest": "3451d5c2a7826e6c1a56814f19da4245",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 22277,
            "upload_time": "2021-12-07T11:09:55",
            "upload_time_iso_8601": "2021-12-07T11:09:55.274623Z",
            "url": "https://files.pythonhosted.org/packages/08/55/06b3a3f165534b4b04e2ec0fed7030054311d331ede8762c15a852616773/shamir-mnemonic-0.2.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2021-12-07 11:09:55",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "trezor",
    "github_project": "python-shamir-mnemonic",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "shamir-mnemonic"
}
        
Elapsed time: 0.13765s