Java 教程是为 JDK 8 编写的。本页中描述的示例和实践未利用在后续版本中引入的改进。
The GenSig
program you are about to create will use the JDK Security API to generate keys and a digital signature for data using the private key and to export the public key and the signature to files. The application gets the data file name from the command line.
The following steps create the GenSig
sample program.
Create a text file named GenSig.java
. Type in the initial program structure (import statements, class name, main
method, and so on).
Generate a key pair (public key and private key). The private key is needed for signing the data. The public key will be used by the VerSig
program for verifying the signature.
Get a Signature
object and initialize it for signing. Supply it with the data to be signed, and generate the signature.
Save the signature bytes in one file and the public key bytes in another.