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发行说明。
Next, VerSig
needs to import the encoded public key bytes from the file specified as the first command line argument and to convert them to a PublicKey
. A PublicKey
is needed because that is what the Signature
initVerify
method requires in order to initialize the Signature
object for verification.
First, read in the encoded public key bytes.
FileInputStream keyfis = new FileInputStream(args[0]); byte[] encKey = new byte[keyfis.available()]; keyfis.read(encKey); keyfis.close();
Now the byte array encKey
contains the encoded public key bytes.
You can use a KeyFactory
class in order to instantiate a DSA public key from its encoding. The KeyFactory
class provides conversions between opaque keys (of type Key
) and key specifications, which are transparent representations of the underlying key material. With an opaque key you can obtain the algorithm name, format name, and encoded key bytes, but not the key material, which, for example, may consist of the key itself and the algorithm parameters used to calculate the key. (Note that PublicKey
, because it extends Key
, is itself a Key
.)
So, first you need a key specification. You can obtain one via the following, assuming that the key was encoded according to the X.509 standard, which is the case, for example, if the key was generated with the built-in DSA key-pair generator supplied by the SUN provider:
X509EncodedKeySpec pubKeySpec = new X509EncodedKeySpec(encKey);
Now you need a KeyFactory
object to do the conversion. That object must be one that works with DSA keys.
KeyFactory keyFactory = KeyFactory.getInstance("DSA", "SUN");
Finally, you can use the KeyFactory
object to generate a PublicKey
from the key specification.
PublicKey pubKey = keyFactory.generatePublic(pubKeySpec);