长时间监听/第一次来电
我已经设置了如下测试页
<form action="" method="post">
<input type="text" name="value" width="20" max="30" value=""/>
<input type="submit" value="go"/>
</form>
用一些PHP加密后期数据“值”并将其存储在一个变量中,如此
$pubKey = openssl_pkey_get_public(".../public.pem");
openssl_public_encrypt($_POST["value"], $var, $pubKey);
echo $var;
也尝试了
$publicKey = ".../public.pem";
$plaintext = $_POST['value'];
openssl_public_encrypt($plaintext, $encrypted, $publicKey);
echo $encrypted;
继续收到错误
警告:openssl_public_encrypt()[function.openssl-public-encrypt]:key参数不是有效的公钥
我使用openssl创建了密钥:
# generate a 1024 bit rsa private key, ask for a passphrase to encrypt it and save to file
openssl genrsa -des3 -out /path/to/privatekey 1024
# generate the public key for the private key and save to file
openssl rsa -in /path/to/privatekey -pubout -out /path/to/publickey
来自这个网站http://andytson.com/blog/2009/07/php-public-key-cryptography-using-openssl/
还尝试使用此方法创建密钥:
openssl req \
-x509 -nodes -days 365 \
-newkey rsa:1024 -keyout mycert.pem -out mycert.pem
仍然是同样的错误。对不起,但整个加密这对我来说很神秘。也不是很熟悉openssl所以代码示例会很棒。
答案 0 :(得分:1)
您的路径似乎不正确:
$pubKey = openssl_pkey_get_public(".../public.pem");
和
$publicKey = ".../public.pem";
应该是
$publicKey = "../public.pem";
$pubKey = openssl_pkey_get_public("../public.pem");
如果.pem文件位于父目录中,或者:
$publicKey = "./public.pem";
$pubKey = openssl_pkey_get_public("./public.pem");
如果.pem文件位于当前工作目录中。或者,您可以使用绝对路径来确保获取正确的文件。