首頁  >  文章  >  後端開發  >  PHP 5.3 可以實現無填滿的 RSA 加解密嗎?

PHP 5.3 可以實現無填滿的 RSA 加解密嗎?

Susan Sarandon
Susan Sarandon原創
2024-11-26 19:57:12718瀏覽

Can PHP 5.3 Implement RSA Encryption/Decryption without Padding?

PHP 5.3 中無填充的RSA 加密和解密

問題:

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

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn