如何从perl中的RSA256公钥中提取n,e密钥?

时间:2017-05-02 13:23:59

标签: perl cryptography rsa

我使用这个Python代码

from Crypto.PublicKey import RSA
key = RSA.importKey( open('public.key').read() )

但我不知道如何在Perl中提取 n e 键。

请解释 n e 提取。

1 个答案:

答案 0 :(得分:1)

你想要

my $key = Crypt::RSA::Key::Public->new( Filename => 'public.key' );