1
我生成了一個公鑰和私鑰用於加密目的。有一個密碼連接到私鑰,但我知道我不應該用這種純文本顯示它。解密數據時保護我的RSA私鑰密碼
我該怎麼做才能保護這個密碼,所以不會以純文本顯示?
// $data = encrypted data using RSA public key
// $key = the key that came along with the encrypted data
// find private key
$pkeyid = openssl_get_privatekey("file:///path/to/private.pem", "PASSWORD");
// try and decrypt the data using private key
openssl_open($data, $decrypted_data, $key, $pkeyid);
// if all went well, show decrypted data
echo $decrypted_data;
感謝您的評論厄貝沙坦。通過主密鑰你是指密碼來獲得私鑰? – bryan
是的,指的是密碼。 –