使用Python库分离RSA的n和e
Python分离RSA公钥的n和e参数
直接打开公钥文件通过RSA.importKey(key).n
和 RSA.importKey(key).e
进行处理:
1 | from Crypto.PublicKey import RSA |
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 q1jun's Blog!
评论
直接打开公钥文件通过RSA.importKey(key).n
和 RSA.importKey(key).e
进行处理:
1 | from Crypto.PublicKey import RSA |