标签: perl
我想编写一个Perl脚本,其中包含以下几行,用于使用SSL加密和解密字符串:
$encryptedstring = encrypt($plaintext,$publickey) $decryptedstring = decrypt($encryptedstring,$secretkey,$passphrase)
我怀疑我需要输入“ use Crypt :: SSLeay;”。或脚本顶部的类似内容。但是,我不知道要使上述两个功能正常工作我需要编写什么代码。这里有人可以帮助我吗?