From 8154806fe2fccacdc3dafaa68181a07bcf8d6c4c Mon Sep 17 00:00:00 2001 From: Determinant Date: Thu, 17 Nov 2022 18:08:59 -0800 Subject: v0.1.7 --- frozen_deps/mnemonic-0.20.dist-info/AUTHORS | 2 + frozen_deps/mnemonic-0.20.dist-info/INSTALLER | 1 + frozen_deps/mnemonic-0.20.dist-info/LICENSE | 21 ++++ frozen_deps/mnemonic-0.20.dist-info/METADATA | 138 ++++++++++++++++++++++ frozen_deps/mnemonic-0.20.dist-info/RECORD | 20 ++++ frozen_deps/mnemonic-0.20.dist-info/WHEEL | 5 + frozen_deps/mnemonic-0.20.dist-info/top_level.txt | 1 + 7 files changed, 188 insertions(+) create mode 100644 frozen_deps/mnemonic-0.20.dist-info/AUTHORS create mode 100644 frozen_deps/mnemonic-0.20.dist-info/INSTALLER create mode 100644 frozen_deps/mnemonic-0.20.dist-info/LICENSE create mode 100644 frozen_deps/mnemonic-0.20.dist-info/METADATA create mode 100644 frozen_deps/mnemonic-0.20.dist-info/RECORD create mode 100644 frozen_deps/mnemonic-0.20.dist-info/WHEEL create mode 100644 frozen_deps/mnemonic-0.20.dist-info/top_level.txt (limited to 'frozen_deps/mnemonic-0.20.dist-info') diff --git a/frozen_deps/mnemonic-0.20.dist-info/AUTHORS b/frozen_deps/mnemonic-0.20.dist-info/AUTHORS new file mode 100644 index 0000000..34ed344 --- /dev/null +++ b/frozen_deps/mnemonic-0.20.dist-info/AUTHORS @@ -0,0 +1,2 @@ +Marek Palatinus +Pavol Rusnak diff --git a/frozen_deps/mnemonic-0.20.dist-info/INSTALLER b/frozen_deps/mnemonic-0.20.dist-info/INSTALLER new file mode 100644 index 0000000..a1b589e --- /dev/null +++ b/frozen_deps/mnemonic-0.20.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/frozen_deps/mnemonic-0.20.dist-info/LICENSE b/frozen_deps/mnemonic-0.20.dist-info/LICENSE new file mode 100644 index 0000000..b135744 --- /dev/null +++ b/frozen_deps/mnemonic-0.20.dist-info/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2013-2016 Pavol Rusnak + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/frozen_deps/mnemonic-0.20.dist-info/METADATA b/frozen_deps/mnemonic-0.20.dist-info/METADATA new file mode 100644 index 0000000..6e3f74a --- /dev/null +++ b/frozen_deps/mnemonic-0.20.dist-info/METADATA @@ -0,0 +1,138 @@ +Metadata-Version: 2.1 +Name: mnemonic +Version: 0.20 +Summary: Implementation of Bitcoin BIP-0039 +Home-page: https://github.com/trezor/python-mnemonic +Author: Trezor +Author-email: info@trezor.io +License: UNKNOWN +Platform: UNKNOWN +Classifier: License :: OSI Approved :: MIT License +Classifier: Operating System :: POSIX :: Linux +Classifier: Operating System :: Microsoft :: Windows +Classifier: Operating System :: MacOS :: MacOS X +Classifier: Programming Language :: Python :: 3 +Requires-Python: >=3.5 + +python-mnemonic +=============== + +.. image:: https://badge.fury.io/py/mnemonic.svg + :target: https://badge.fury.io/py/mnemonic + +Reference implementation of BIP-0039: Mnemonic code for generating +deterministic keys + +Abstract +-------- + +This BIP describes the implementation of a mnemonic code or mnemonic sentence -- +a group of easy to remember words -- for the generation of deterministic wallets. + +It consists of two parts: generating the mnenomic, and converting it into a +binary seed. This seed can be later used to generate deterministic wallets using +BIP-0032 or similar methods. + +BIP Paper +--------- + +See https://github.com/bitcoin/bips/blob/master/bip-0039.mediawiki +for full specification + +Installation +------------ + +To install this library and its dependencies use: + + ``pip install mnemonic`` + +Usage examples +-------------- + +Import library into python project via: + +.. code-block:: python + + from mnemonic import Mnemonic + +Initialize class instance, picking from available dictionaries: + +- english +- chinese_simplified +- chinese_traditional +- french +- italian +- japanese +- korean +- spanish + +.. code-block:: python + + mnemo = Mnemonic(language) + mnemo = Mnemonic("english") + +Generate word list given the strength (128 - 256): + +.. code-block:: python + + words = mnemo.generate(strength=256) + +Given the word list and custom passphrase (empty in example), generate seed: + +.. code-block:: python + + seed = mnemo.to_seed(words, passphrase="") + +Given the word list, calculate original entropy: + +.. code-block:: python + + entropy = mnemo.to_entropy(words) + +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`_. + +`0.20`_ - 2021-07-27 +--------------------- + +.. _0.20: https://github.com/trezor/python-mnemonic/compare/v0.19...v0.20 + +Added +~~~~~ + +- Type annotations +- Support for testnet private keys + +Changed +~~~~~~~ + +- Project directory structure was cleaned up +- Language on the `Mnemonic` object is remembered instead of repeatedly detecting + +Removed +~~~~~~~ + +- Support for Python 2.7 and 3.4 was dropped + + + +0.19 - 2019-10-01 +------------------ + +Added +~~~~~ + +- Start of changelog + + +.. _Keep a Changelog: https://keepachangelog.com/en/1.0.0/ +.. _Semantic Versioning: https://semver.org/spec/v2.0.0.html + + diff --git a/frozen_deps/mnemonic-0.20.dist-info/RECORD b/frozen_deps/mnemonic-0.20.dist-info/RECORD new file mode 100644 index 0000000..df6e8d0 --- /dev/null +++ b/frozen_deps/mnemonic-0.20.dist-info/RECORD @@ -0,0 +1,20 @@ +mnemonic-0.20.dist-info/AUTHORS,sha256=5ugihxzh5OoFf-6gBQOnJfgaznUQHX5Vv4L9Th9iGFo,77 +mnemonic-0.20.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +mnemonic-0.20.dist-info/LICENSE,sha256=1ePHxiqE6ABzIB4vblEw6eaAT6BfisT4smoTx9OWlpc,1084 +mnemonic-0.20.dist-info/METADATA,sha256=dXEUuWVHgleZLdLt3xICy8dSoNUs1aFzj4qccHpLoTc,2872 +mnemonic-0.20.dist-info/RECORD,, +mnemonic-0.20.dist-info/WHEEL,sha256=EVRjI69F5qVjm_YgqcTXPnTAv3BfSUr0WVAHuSP3Xoo,92 +mnemonic-0.20.dist-info/top_level.txt,sha256=XlFgB9xaifTc2HXO7w9EXCvIUHFN_x51trUyPQKBSHI,9 +mnemonic/__init__.py,sha256=xlJLxkmLgN4zK_WNEA067BEEL7tVkIWqC8JZVbLq9o0,55 +mnemonic/__pycache__/__init__.cpython-310.pyc,, +mnemonic/__pycache__/mnemonic.cpython-310.pyc,, +mnemonic/mnemonic.py,sha256=x4Gm8j0oeqf2Icu23soMWzBu2fB6GjC5PYcOvqYldRA,10307 +mnemonic/py.typed,sha256=bWew9mHgMy8LqMu7RuqQXFXLBxh2CRx0dUbSx-3wE48,27 +mnemonic/wordlist/chinese_simplified.txt,sha256=XFlCeSvYNAy4snzVkvEBXt9WqMWyYnbuGKSCQo58VyY,8192 +mnemonic/wordlist/chinese_traditional.txt,sha256=QXsms9hQCkrj1ZcX1wEZUttvwvuEuAfz-UrHNOicG18,8192 +mnemonic/wordlist/english.txt,sha256=L17tU6Rye0v4iA2PPxme_JDlhQNkbZ_47_Oi7Tsk29o,13116 +mnemonic/wordlist/french.txt,sha256=uMrsEjGdD_sSfITkLIhmyGpUrJlR_iz7-QLTVVLGXk8,16776 +mnemonic/wordlist/italian.txt,sha256=05LEn9twCiTNH86yN8H2XcwSj2s0qKrLWLWThLXGSMI,16033 +mnemonic/wordlist/japanese.txt,sha256=Lu0K70kikeBhYz162BF_GisD64CinQ5OMResJSjQX_0,26423 +mnemonic/wordlist/korean.txt,sha256=npX4bBZ96I9FDwqvieh_ZiSlf5c8Z7UW4zjo6LiJf2A,37832 +mnemonic/wordlist/spanish.txt,sha256=RoRqWgE50ePLdyk-UhwoZfe824LETo0KBqLNDsukjAs,13996 diff --git a/frozen_deps/mnemonic-0.20.dist-info/WHEEL b/frozen_deps/mnemonic-0.20.dist-info/WHEEL new file mode 100644 index 0000000..83ff02e --- /dev/null +++ b/frozen_deps/mnemonic-0.20.dist-info/WHEEL @@ -0,0 +1,5 @@ +Wheel-Version: 1.0 +Generator: bdist_wheel (0.35.1) +Root-Is-Purelib: true +Tag: py3-none-any + diff --git a/frozen_deps/mnemonic-0.20.dist-info/top_level.txt b/frozen_deps/mnemonic-0.20.dist-info/top_level.txt new file mode 100644 index 0000000..9015942 --- /dev/null +++ b/frozen_deps/mnemonic-0.20.dist-info/top_level.txt @@ -0,0 +1 @@ +mnemonic -- cgit v1.2.3-70-g09d2