PyECC 示例 - Python 椭圆曲线密码学

发布于 2024-12-09 16:32:46 字数 131 浏览 0 评论 0原文

我正在使用 PyECC - 它是我能找到的唯一的 python 椭圆曲线加密模块。我想知道是否有人有如何使用该模块的示例?我会尝试阅读源代码,但我在 Stack Overflow 上找不到有关 python 主题的任何内容。

谢谢!

I am working with PyECC - it is the only elliptic curve cryptography module for python that I can find. I was wondering if anyone had an example of how to use the module? I'll try reading the source, but I couldn't find anything on Stack Overflow on the topic regarding python.

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

空城之時有危險 2024-12-16 16:32:46

想通了。感谢您的建议。对于任何想要了解如何实现 PyECC 的信息的人,请查看我在 github 上编写的加密包装器。

CryptoWrapper - https://github.com/ f47h3r/CryptoWrapper

Figured it out. Thank you for your suggestions. For anyone wanting information on how to implement PyECC, check out the crypto wrapper I wrote on github.

CryptoWrapper - https://github.com/f47h3r/CryptoWrapper

森罗 2024-12-16 16:32:46

看起来文档似乎很简单,因此源代码是您能够用来了解如何使用 python 绑定的唯一地方。然而,它看起来

>>> encrypter = ECC.generate()
>>> encrypter.encrypt('your text here')

应该适用于加密。同样的操作也适用于 pyecc.py 中定义的所有方法,即 decryptsignverify。请务必检查方法签名以找出需要哪些参数。

It looks as though the documentation is bare, so the source is the only spot you'll be able to use to figure out how to use the python bindings. However, it looks like

>>> encrypter = ECC.generate()
>>> encrypter.encrypt('your text here')

Should work for encryption. The same should work for all the methods defined in pyecc.py, namely decrypt, sign, and verify. Just be sure to check the method signatures to find out what arguments are required.

绮烟 2024-12-16 16:32:46

查看 https://github.com/bwesterb/py-seccure
其用于 Python 的简单椭圆曲线加密与出色的 SECCURE 命令行实用程序兼容。

Check out https://github.com/bwesterb/py-seccure
Its Simple Elliptic Curve Cryptography for Python compatible with the excellent SECCURE command line utility.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文