问题:
是否有一个 PHP 5.3 类可以启用 RSA没有填充的加密/解密?我拥有私钥和公钥,以及 p、q 和模数。
答案:
phpseclib 提供纯 PHP无需填充即可处理加密和解密的 RSA 实现:
<?php include('Crypt/RSA.php'); $private_key = file_get_contents('private.key'); $rsa = new Crypt_RSA(); $rsa->loadKey($private_key); $plaintext = new Math_BigInteger('aaaaaa'); echo $rsa->_exponentiate($plaintext)->toBytes(); ?>
以上是PHP 5.3 可以实现无填充的 RSA 加解密吗?的详细内容。更多信息请关注PHP中文网其他相关文章!