我实现了一个例子(为了更好地理解我自己)数字签名是如何工作的(在我的例子中是 php)。
我在“如何使用数字签名进行身份验证?”下使用了 Bob 和 Alice 的故事。来自http://www.verisign.com.au/repository/tutorial/digital/intro1.shtml
Bob 可以确信该消息确实来自 Alice,并且自她签署以来没有改变。如果消息摘要不相等,则消息要么源自其他地方,要么在签名后被更改(或私钥不同)。”
在我发布代码之前,我想提一下,这可能不是不使用标准生成密钥的正确方法。但我应该让我(也许还有你)了解签名的工作原理。
echo "Example 2 <br><br>";
$res = openssl_pkey_new();
/* Extract the private key from $res to $privKey */
openssl_pkey_export($res, $privKey);
/* Extract the public key from $res to $pubKey */
$pubKey = openssl_pkey_get_details($res);
$pubKey = $pubKey["key"];
$message = "Im a message";
echo "<br><br><strong>Public key:</strong><br>";
echo $pubKey;
echo "<br><br><strong>Private key:</strong><br>";
echo $privKey;
echo "<br><br><strong>Message:</strong><br>";
echo $message;
echo "<br><br><strong>Message digest:</strong><br>";
echo $md5message = sha1($message);
echo "<br><br><strong>Message digest encrypted(signature):</strong><br>";
openssl_private_encrypt($md5message, $crypted, $privKey);
echo $crypted;
echo "<br><br><strong>Bob uses sha1 as well for the message:</strong><br>";
echo $md5message = md5($message);
echo "<br><br><strong>Bob checks with decrypt(verify):</strong><br>";
openssl_public_decrypt($crypted, $decrypted, $pubKey);
echo $decrypted;
我有3个问题:
1) 签名工作流程是否正确?我应该改变什么(如前所述,我不想生成“正确的”.pem、.crt 等键......对我来说是下一步)。
2)在我的理解中,私钥总是用来解密的。用于加密的公钥。我知道这里的措辞是私钥的签名,并使用公钥进行验证。显然我可以在这个例子中只用公钥来验证它。我无法理解这一点。这怎么可能?也许你可以给我一个更好的例子或链接?
3)我应该在我的实施中改变什么?
提前致谢。