标签: perl cryptography rsa
我使用这个Python代码
from Crypto.PublicKey import RSA key = RSA.importKey( open('public.key').read() )
但我不知道如何在Perl中提取 n 和 e 键。
请解释 n 和 e 提取。
答案 0 :(得分:1)
你想要
my $key = Crypt::RSA::Key::Public->new( Filename => 'public.key' );