問題:
是否有一個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中文網其他相關文章!