rsakey.py 文件源码

python
阅读 27 收藏 0 点赞 0 评论 0

项目:morphis 作者: bitcoinembassy 项目源码 文件源码
def generate(bits, progress_func=None):
        """
        Generate a new private RSA key.  This factory function can be used to
        generate a new host key or authentication key.

        :param int bits: number of bits the generated key should be.
        :param function progress_func:
            an optional function to call at key points in key generation (used
            by ``pyCrypto.PublicKey``).
        :return: new `.RsaKey` private key
        """
        rsa = RSA.generate(bits, os.urandom, progress_func)
        key = RsaKey(vals=(rsa.e, rsa.n))
        key.d = rsa.d
        key.p = rsa.p
        key.q = rsa.q
        return key

    ###  internals...
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号