Skip to content

Commit 5163de2

Browse files
committed
Mentioned go-libtest
1 parent 28e3384 commit 5163de2

2 files changed

Lines changed: 9 additions & 6 deletions

File tree

README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# sssaas-python
1+
# sssa-python
22
An implementation of Shamir's Secret Sharing Algorithm in Python
33
Compatible with both Python 2.7 and 3.5; other versions untested.
44

@@ -19,7 +19,10 @@ For more detailed documentation, check out docs/sssa.md
1919
## Contributing
2020
We welcome pull requests, issues, security advice on this library, or other contributions you feel are necessary. Feel free to open an issue to discuss any questions you have about this library.
2121

22-
The reference implementation for this cross-language project was written in Go.
23-
Please consult the golang library [here](https://github.com/SSSAAS/sssaas-golang).
22+
The reference implementation for this cross-language project was written in Go, [here](https://github.com/SSSAAS/sssaas-golang).
23+
Please make sure all tests pass before submitting a pull request. In particular,
24+
`python ./utils_tests.py && python ./sssa_tests.py` will run all internal tests
25+
and the [go-libtest](https://github.com/SSSAAS/go-libtest) suite's tests should be run
26+
against the changes before submission.
2427

2528
For security issues, send a GPG-encrypted email to <alexander.m.scheel@gmail.com> with public key [0xBDC5F518A973035E](https://pgp.mit.edu/pks/lookup?op=vindex&search=0xBDC5F518A973035E).

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77

88
setup(
99
name="sssa-python",
10-
version="0.0.1",
11-
url="https://git.cipherboy.com/SSSAAS/sssa-python",
10+
version="0.0.2",
11+
url="https://github.com/SSSaaS/sssa-python",
1212
license="MIT",
1313
author="Alexander Scheel",
1414
author_email="alexander.m.scheel@gmail.com",
15-
description=("Helper Shamir's Secret Sharing module for Ruby"),
15+
description=("Helper Shamir's Secret Sharing module for Python"),
1616
packages=["SSSA"],
1717
classifiers=[
1818
"Intended Audience :: Developers",

0 commit comments

Comments
 (0)