Skip to content

Commit

Permalink
Merge pull request #2 from mind-network/patch_1.0.0
Browse files Browse the repository at this point in the history
v1.0.1 release
  • Loading branch information
dennis-mind authored Jun 1, 2023
2 parents d63b07c + 43a7b1e commit 626d3c0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ Full doc: [https://mind-network.gitbook.io/mind-lake-sdk](https://mind-network.g

* v1.0
* Initial Release
* v1.0.1
* Fix bug

## License

Expand Down
2 changes: 1 addition & 1 deletion mindlakesdk/keyhelper.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def prepareKeys(web3, walletAccount):
else:
mk = mindlakesdk.utils.genAESKey()
sk = mindlakesdk.utils.genRSAKey()
skBytes = sk.exportKey('DER')
skBytes = sk.exportKey('DER', pkcs=8)
skIV = mindlakesdk.utils.get_random_bytes(16)
skCipher = mindlakesdk.utils.aesEncrypt(mk, skIV, skBytes)
skCipher = skIV + skCipher
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "mindlakesdk"
version = "v1.0.0"
version = "v1.0.1"
authors = [
{ name="Mind Labs", email="biz@mindnetwork.xyz" },
]
Expand Down

0 comments on commit 626d3c0

Please sign in to comment.