RSA 加密解密,PHP 不填充
問題:
問題:在PH 5533.中,是否存在一個提供不含填充的RSA 加密/解密的類別?我已準備好私鑰和公鑰、p、q 和模數。
答案:<?php include('Crypt/RSA.php'); $privatekey = file_get_contents('private.key'); $rsa = new Crypt_RSA(); $rsa->loadKey($privatekey); $plaintext = new Math_BigInteger('aaaaaa'); echo $rsa->_exponentiate($plaintext)->toBytes(); ?>
以上是是否有用於未填入 RSA 加密/解密的 PHP 5.3 類別?的詳細內容。更多資訊請關注PHP中文網其他相關文章!