The Java Tutorials have been written for JDK 8.Java教程是为JDK 8编写的。Examples and practices described in this page don't take advantage of improvements introduced in later releases and might use technology no longer available.本页中描述的示例和实践没有利用后续版本中引入的改进,并且可能使用不再可用的技术。See Java Language Changes for a summary of updated language features in Java SE 9 and subsequent releases.有关Java SE 9及其后续版本中更新的语言特性的摘要,请参阅Java语言更改。
See JDK Release Notes for information about new features, enhancements, and removed or deprecated options for all JDK releases.有关所有JDK版本的新功能、增强功能以及已删除或不推荐的选项的信息,请参阅JDK发行说明。
If you have data for which a digital signature was generated, you can verify the authenticity of the signature. To do so, you need如果您有生成数字签名的数据,则可以验证签名的真实性。为此,您需要
In this example you write a 在这个例子中,您编写了一个VerSig
program to verify the signature generated by the GenSig
program. This demonstrates the steps required to verify the authenticity of an alleged signature.VerSig
程序来验证GenSig
程序生成的签名。这演示了验证所谓签名真实性所需的步骤。
VerSig
imports a public key and a signature that is alleged to be the signature of a specified data file and then verifies the authenticity of the signature. 导入公钥和据称是指定数据文件签名的签名,然后验证签名的真实性。The public key, signature, and data file names are specified on the command line.公钥、签名和数据文件名在命令行上指定。
The steps to create the 创建VerSig
sample program to import the files and to verify the signature are the following.VerSig
示例程序以导入文件和验证签名的步骤如下。
Prepare Initial Program Structure准备初始程序结构
Create a text file named 创建一个名为VerSigjava的文本文件。键入初始程序结构(导入语句、类名、VerSig.java
. Type in the initial program structure (import statements, class name, main
method, and so on).main
方法等)。
Input and Convert the Encoded Public Key Bytes输入并转换编码的公钥字节
Import the encoded public key bytes from the file specified as the first command line argument and convert them to a 从指定为第一个命令行参数的文件中导入编码的公钥字节,并将其转换为PublicKey
.PublicKey
。
Input the Signature Bytes输入签名字节
Input the signature bytes from the file specified as the second command line argument.从指定为第二个命令行参数的文件中输入签名字节。
Get a 获取Signature
object and initialize it with the public key for verifying the signature. Supply it with the data whose signature is to be verified (from the file specified as the third command line argument), and verify the signature.Signature
对象,并使用公钥对其进行初始化,以验证签名。向它提供要验证其签名的数据(来自指定为第三个命令行参数的文件),并验证签名。