Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Python reference to auditably generate shares #59

Closed
wants to merge 35 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
f309058
Create LICENSE
BenWestgate Aug 9, 2023
3d35f64
Create Cargo.toml
BenWestgate Aug 9, 2023
d4a0a8a
Create lib.py
BenWestgate Aug 9, 2023
fc8aa55
Create gf32.py
BenWestgate Aug 9, 2023
2b709c3
Create checksum.py
BenWestgate Aug 9, 2023
e0cdc33
Update lib.py
BenWestgate Aug 9, 2023
d73498a
Update lib.py
BenWestgate Aug 11, 2023
cd17d45
Update lib.py
BenWestgate Aug 15, 2023
07b8d2a
Merge pull request #1 from BenWestgate/BenWestgate-patch-1
BenWestgate Aug 15, 2023
a88a023
Delete gf32.py
BenWestgate Aug 15, 2023
8f8bce4
Delete checksum.py
BenWestgate Aug 15, 2023
da93864
'unique string' replaces date. Runs now. Update lib.py
BenWestgate Aug 18, 2023
d8ae4d7
Near final draft, Update lib.py should check off all tasklists.
BenWestgate Aug 25, 2023
5baff87
scrypt for ident encryption, remove extra lines
BenWestgate Aug 25, 2023
7f734a5
formatting refactor + add ecc_padding, fix imports
BenWestgate Aug 25, 2023
0e766c0
Update lib.py remove useless check if k==‘1’ from ms32_decode
BenWestgate Aug 26, 2023
7beef6f
Update lib.py
BenWestgate Aug 26, 2023
bc4506c
Removed another useless k==‘1’ check. Update lib.py
BenWestgate Aug 26, 2023
4fea96c
Merge pull request #2 from BenWestgate/BenWestgate-patch-1
BenWestgate Aug 26, 2023
d09833f
Update lib.py
BenWestgate Aug 26, 2023
3519a3e
refactor ecc_padding & ident_enc_key, fix id=temp
BenWestgate Aug 26, 2023
b277759
add header to ecc padding, fix validate_strings
BenWestgate Aug 27, 2023
eb83413
bytes(info), new_id => tmp_id, relabel new_shares
BenWestgate Aug 27, 2023
aaa33a0
relabel can only be done on k strings, rest derive
BenWestgate Aug 27, 2023
7ec6a63
renamed lib.py to codex32.py
BenWestgate Sep 4, 2023
4150912
Delete Westgate's additions codex32.py
BenWestgate Sep 4, 2023
312dc59
Add Westgate's additions to the reference Update codex32.py
BenWestgate Sep 4, 2023
f4b7bdb
Import instruction draft
BenWestgate Oct 28, 2023
62e999e
Generation and Import python reference
BenWestgate Oct 28, 2023
079f768
update .gitignore
BenWestgate Oct 28, 2023
639ed5b
Merge branch 'master' of https://github.com/BenWestgate/codex32
BenWestgate Oct 28, 2023
8627745
Update wallets.md
BenWestgate Oct 28, 2023
ccbadb6
MAY assume correct length is the closer of 48 or 74. Update wallets.md
BenWestgate Oct 29, 2023
d402d68
remove unneeded line, remove "levens... dist", 10-30 seconds of searc…
BenWestgate Nov 2, 2023
78b861d
Merge branch 'BlockstreamResearch:master' into master
BenWestgate Nov 3, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,5 @@ mathematical-companion/*.log
mathematical-companion/*.out
mathematical-companion/*.pdf
mathematical-companion/*.toc
reference/python-codex32/src/__pycache__/codex32.cpython-310.pyc
__pycache__/codex32.cpython-310.pyc
3 changes: 3 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions .idea/codeStyles/Project.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions .idea/codeStyles/codeStyleConfig.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 14 additions & 0 deletions .idea/codex32.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

30 changes: 30 additions & 0 deletions .idea/inspectionProfiles/Project_Default.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading