The JDK Security API is a core API of the Java programming language,
built around the
java.security package (and its subpackages).
This API is designed to allow developers to incorporate both
low-level and high-level security functionality into their programs.
The first release of JDK Security in JDK 1.1 introduced the
"Java Cryptography Architecture" (JCA), which refers to a framework for
accessing and developing cryptographic functionality for the Java platform.
In JDK 1.1, the JCA included APIs for digital signatures
and message digests.
JDK 1.2 significantly extends the Java Cryptography Architecture, as
described in this document. It also upgrades the certificate management
infrastructure to support X.509 v3 certificates, and introduces a new
Java Security Architecture for fine-grain, highly configurable, flexible,
and extensible access control.
The Java Cryptography Architecture encompasses the parts of the
JDK 1.2 Security API related to cryptography, as well
as a set of conventions and specifications provided in this document.
It includes a "provider" architecture
that allows for multiple and interoperable cryptography implementations.
The Java Cryptography Extension (JCE) extends the JCA API
to include APIs for encryption, key exchange, and Message
Authentication Code (MAC). Together, the JCE and the
cryptography aspects of the JDK
provide a complete, platform-independent cryptography API.
The JCE is released separately as an extension to the JDK, in
accordance with U.S. export control regulations.
This document is both a high-level description and a specification
of the Java Cryptography Architecture API and its default provider,
as shipped in the Java Development Kit (JDK) version 1.2.
A separate document describing the JCE API is provided with the JCE release.
See the "Java Security Architecture
Specification" for
information about the Java Security Architecture aspects of
the JDK Security API.
The Java Cryptography Architecture (JCA) was designed around these
principles:
implementation independence and interoperability
algorithm independence and extensibility
Implementation independence and algorithm independence are complementary:
their aim is to let users of the API utilize cryptographic
concepts, such as digital signatures and message digests,
without concern for the implementations or even the algorithms
being used to implement these concepts. When complete algorithm-independence
is not possible, the JCA provides developers with standardized
algorithm-specific APIs. When implementation-independence is not
desirable, the JCA lets developers indicate the specific implementations
they require.
Algorithm independence is achieved by defining types of cryptographic
"engines" (services), and defining classes that provide the
functionality of these cryptographic engines. These classes are called
engine classes, and examples are the MessageDigest, Signature, and KeyFactory classes.
Implementation independence is achieved using a "provider"-based
architecture. The term Cryptographic Service
Provider (used interchangeably with "provider" in this document)
refers to a package or set of packages that implement one or more
cryptographic services, such as digital signature algorithms,
message digest algorithms, and key conversion services.
A program may simply request a particular type of object
(such as a Signature object) implementing a particular
service (such as the DSA signature algorithm) and get an
implementation from one of the installed providers.
If desired, a program may instead request an implementation from
a specific provider. Providers may be updated transparently to the
application, for example when faster or more secure versions are
available.
Implementation interoperability means that various implementations
can work with each other, use each other's keys, or verify each
other's signatures. This would mean, for example, that for the
same algorithms, a key generated by one provider would be
usable by another, and a signature generated
by one provider would be verifiable by another.
Algorithm extensibility means that new algorithms that fit in
one of the supported engine classes can easily be added.
The Java Cryptography Architecture introduces the notion of a
Cryptographic Service Provider
(used interchangeably with "provider" in this document). This term refers to
a package (or a set of packages) that supply
a concrete implementation of a subset of the cryptography aspects of
the JDK Security API.
In JDK 1.1 a provider could,
for example, contain an implementation of one or more digital signature
algorithms, message digest algorithms, and key generation
algorithms. JDK 1.2 adds five additional types of services:
key factories, keystore creation and management,
algorithm parameter management,
algorithm parameter generation, and certificate factories.
It also enables a provider to
supply a random number generation (RNG) algorithm. Previously,
RNGs were not provider-based; a particular algorithm was
hard-coded in the JDK.
As previously noted, a program may simply request a particular type of
object (such as a Signature object) for a particular service (such as the
DSA signature algorithm) and get an implementation from one of
the installed providers. Alternatively, the program can request
a specific provider. (Each provider has a name used to refer to it.)
Sun's version of the Java runtime environment comes
standard with a default provider, named "SUN".
Other Java runtime environments may not necessarily supply the
"SUN" provider. The "SUN" provider package includes:
An implementation of the Digital Signature Algorithm (DSA), described
in NIST FIPS 186.
An implementation of the MD5 (RFC 1321) and SHA-1 (NIST FIPS 180-1)
message digest algorithms.
A DSA key pair generator for generating a pair of public and private
keys suitable for the DSA algorithm.
A DSA algorithm parameter generator.
A DSA algorithm parameter manager.
A DSA "key factory" providing bi-directional conversions between
(opaque) DSA private and public key objects and their underlying key
material.
An implementation of the proprietary "SHA1PRNG"
pseudo-random number generation algorithm, following the recommendations
in the IEEE P1363 standard (Appendix G.7).
A "certificate factory" for X.509 certificates and Certificate
Revocation Lists (CRLs).
A keystore implementation for the proprietary keystore
type named "JKS".
Each JDK installation has one or more provider packages installed.
New providers may be added statically or dynamically (see
the Provider and
Security classes). The
Java Cryptography Architecture offers a
set of APIs that allow users to query
which providers are installed and what services they support.
Clients may configure their runtime with different providers,
and specify a preference order for each of them. The preference
order is the order in which providers are searched for requested
services when no specific provider is requested.
A database called a "keystore" can be used to
manage a repository of keys and certificates.
A keystore is available to
applications that need it for authentication or signing purposes.
Applications can access a keystore via an implementation of the
KeyStore class, which is in the java.security package.
A default KeyStore implementation is provided by Sun Microsystems.
It implements the keystore as a file, utilizing a proprietary
keystore type (format) named "JKS",
Applications can choose different types of keystore implementations
from different providers, using the "getInstance" factory method supplied
in the KeyStore class.
An "engine class" defines a cryptographic service
in an abstract fashion (without a concrete implementation).
A cryptographic service is always
associated with a particular algorithm or type,
and it either provides cryptographic operations
(like those for digital
signatures or message digests), generates or supplies the
cryptographic material (keys or parameters)
required for cryptographic
operations, or generates data objects
(keystores or certificates) that encapsulate cryptographic
keys (which can be used in a cryptographic operation)
in a secure fashion. For example, two of the engine classes are the Signature
and KeyFactory classes. The Signature
class provides access to the functionality of a
digital signature algorithm.
A DSA KeyFactory supplies a DSA private
or public key (from its encoding or transparent specification)
in a format usable by the initSign or initVerify methods,
respectively, of a DSA Signature object.
The Java Cryptography Architecture encompasses the classes of the
JDK1.2 Security package related to cryptography, including the
engine classes. Users of the API request and utilize
instances of the engine classes to carry out corresponding operations.
The following engine classes are defined in JDK 1.2:
MessageDigest - used
to calculate the message digest (hash) of specified data.
Signature - used to sign data
and verify digital signatures.
KeyPairGenerator - used to generate a pair of
public and private keys suitable for a specified algorithm.
KeyFactory - used to
convert opaque cryptographic keys of type Key
into key specifications (transparent representations of the underlying
key material), and vice versa.
CertificateFactory - used to
create public key certificates and Certificate Revocation Lists (CRLs).
KeyStore - used to create and manage a
keystore.A keystore is a database of keys. Private keys in a keystore
have a certificate chain associated with them, which authenticates
the corresponding public key.
A keystore also contains certificates from trusted entities.
AlgorithmParameters - used
to manage the parameters for a particular algorithm, including
parameter encoding and decoding.
SecureRandom - used to generate random
or pseudo-random numbers.
Note: A "generator" creates objects with brand-new contents, whereas
a "factory" creates objects from existing material (for example, an
encoding).
An engine class provides the interface to the functionality of a
specific type of cryptographic service (independent
of a particular cryptographic algorithm).
It defines "Application Programming Interface" (API)
methods that allow applications to access the specific type
of cryptographic service it provides. The actual implementations
(from one or more providers) are those for specific
algorithms. The Signature engine
class, for example, provides access to the functionality of a
digital signature algorithm. The actual implementation supplied
in a SignatureSpi subclass (see next paragraph) would be that
for a specific kind of signature
algorithm, such as SHA1 with DSA, SHA1 with RSA, or MD5 with RSA.
The application interfaces supplied by an engine class are
implemented in terms of a "Service Provider Interface" (SPI).
That is, for each engine class, there is a corresponding
abstract SPI class, which defines the Service Provider
Interface methods that cryptographic service providers must implement.
An instance of an engine class, the "API object", encapsulates (as a
private field) an instance of the corresponding SPI class, the "SPI
object". All API methods of an API object are declared "final", and
their implementations invoke the corresponding SPI methods of the
encapsulated SPI object. An instance of an engine class (and of its
corresponding SPI class) is created by a call to
the getInstance factory method of the engine class.
The name of each SPI class is the same as that of the corresponding
engine class, followed by "Spi". For example,
the SPI class corresponding to the Signature engine class is the
SignatureSpi class.
Each SPI class is abstract. To supply the implementation of a
particular type of service, for a specific algorithm,
a provider must subclass the corresponding SPI class and provide
implementations for all the abstract methods.
Another example of an engine class is the MessageDigest class, which
provides access to a message digest algorithm. Its implementations,
in MessageDigestSpi subclasses, may be those of various
message digest algorithms such as SHA-1, MD5, or MD2.
As a final example, the KeyFactory engine class supports the conversion
from opaque keys to transparent key specifications, and vice versa.
(See the Key Specification Interfaces and Classes
section.)
The actual implementation supplied in a KeyFactorySpi subclass
would be that for a specific type of keys, e.g., DSA public
and private keys.
Implementations and Providers
Implementations for various cryptographic services are provided by JCA
Cryptographic Service Providers. Cryptographic
service providers
are essentially packages that supply one or more cryptographic service
implementations. For example, the Java Development
Kit's default provider, named "SUN", supplies implementations
of the DSA signature algorithm, the MD5 and SHA-1 message digest
algorithms, the DSA key pair generation algorithm, and
the SHA1PRNG pseudo-random number generation algorithm.
It also supplies a key factory for DSA private and public keys, a
certificate factory for X.509 certificates and CRLs, an implementation of
DSA parameters (including their generation), and a keystore implementation
of the proprietary keystore type named "JKS".
Other providers may define their own implementations of
these services or of other services,
such as one of the RSA-based signature algorithms or the
MD2 message digest algorithm.
Factory Methods to Obtain Implementation Instances
For each engine class in the API, a particular implementation is
requested and instantiated
by calling a factory method on the engine class.
A factory method
is a static method that returns an instance of a class.
The basic mechanism for obtaining an appropriate Signature object,
for example,
is as follows: A user requests such an object by calling the
getInstance method in the Signature class, specifying
the name of a
signature algorithm (such as "SHA1withDSA"), and, optionally, the name
of the provider whose implementation is desired. The
getInstance method finds an implementation
that satisfies the supplied algorithm and provider parameters. If no
provider is specified, getInstance searches the
registered providers, in preference order, for one with an
implementation of the specified algorithm. See The Provider Class for more
information about registering providers.
This section shows the signatures of the main methods in each class
and interface. Usage examples for some of these classes
(MessageDigest, Signature, KeyPairGenerator, SecureRandom, KeyFactory,
and key specification classes)
are supplied in the corresponding
Examples sections.
The complete reference documentation for the relevant Security API packages
can be found in:
The term "Cryptographic Service Provider" (used interchangeably
with "provider" in this document) is used to refer to a package or
set of packages that supply a concrete implementation of a subset
of the cryptography aspects of the JDK Security API.
The Provider class is the interface to such a package or set of
packages. It has methods for accessing the provider name, version
number, and other information. Please note that in addition to registering
implementations of cryptographic services, the Provider class can
also be used to register implementations of other security services that might
get defined as part of the JDK Security API or one of its extensions.
To actually supply
implementations of cryptographic services, an entity (e.g., a
development group)
writes the implementation code and creates a subclass of the
Provider class. The constructor of the
subclass sets the values of various properties that are required
for the JDK Security API to look up the services
implemented by the provider. That is, it specifies the names of
the classes implementing the services.
There are several types of services that can be implemented by
provider packages - see Engine Classes and Algorithms.
The different implementations may have different
characteristics. Some may be software-based, while others may be
hardware-based. Some may be platform-independent, while others may be
platform-specific. Some provider source code may be available for
review and evaluation, while some may not.
The Java Cryptography Architecture (JCA) lets both end-users and
developers decide what their needs
are. In this section we explain how end-users install the
cryptography implementations that fit their needs, and how developers
request the implementations that fit theirs.
For each engine class in the API, a particular
implementation is requested and instantiated by calling a
getInstance method on the engine class, specifying
the name of the desired algorithm and, optionally, the name
of the provider whose implementation is desired.
If no provider is specified, getInstance
searches the registered providers for an
implementation of the requested cryptographic service
associated with the named algorithm.
In any given Java Virtual Machine (JVM), providers are
installed in a
given preference order . That order is the order in which they
are searched when no specific provider is requested. For example,
suppose there are two providers installed in a JVM,
one named "PROVIDER_1" and the other "PROVIDER_2". Further suppose that
PROVIDER_1 implements SHA1withDSA, SHA, MD5, DES, and DES3
If PROVIDER_1 has preference order 1 (the highest priority) and
PROVIDER_2 has preference order 2, then the following behavior will occur:
Suppose we are looking for an MD5 implementation. Both providers
supply such an implementation. The PROVIDER_1 implementation is returned
since PROVIDER_1 has the highest priority and thus is searched first.
If we are looking for an MD5withRSA signature
algorithm, PROVIDER_1 is first searched for it. No implementation is
found, so PROVIDER_2 is searched. Since an implementation is found, it
is returned.
Suppose we are looking for a SHA1withRSA signature
algorithm. Since no installed provider implements it, a
NoSuchAlgorithmException is raised.
The getInstance methods that include a provider argument
are for developers who want to specify which provider they want
an algorithm from. A federal agency, for example, will want to use a
provider implementation that has received federal certification.
Let's assume that the SHA1withDSA implementation from
PROVIDER_1 has not received such certification, while the DSA
implementation of PROVIDER_2 has received it.
A Federal program would then have the following call, specifying
PROVIDER_2 since it has the certified implementation:
In this case, if "PROVIDER_2" was not installed, a
NoSuchProviderException would be raised, even if a
different installed provider implements the algorithm requested.
A program also
has the option of getting a list of all the installed Providers
(using the getProviders method in the
Security class), and choosing one from the list.
There are two parts to installing a provider: installing the provider
package classes, and configuring the provider.
Installing the Provider Classes
There are a couple possible ways
of installing the provider classes:
Place a zip or JAR file containing the classes
anywhere on your CLASSPATH.
Supply your provider JAR file as an "installed" or "bundled"
extension. For more information on how to deploy an extension,
see
How is an extension deployed?.
Configuring the Provider
The next step is to add the provider to your list of approved
providers. This is done statically by editing the security properties file
Here <java-home> refers to the directory where the JRE
was installed. For example, if you have JDK 1.2 installed on Solaris, you
need to edit the following file:
jdk1.2/jre/lib/security/java.security
Similarly, if you have JRE 1.2 installed on Solaris, you need to edit
this file:
jre1.2/lib/security
One of the types of properties you can set in java.security
is of the following form:
security.provider.n=masterClassName
This declares a provider, and specifies its preference order
n. The preference order is the order in which providers are
searched for requested algorithms (when no specific provider is
requested). The order is 1-based; 1 is the most preferred, followed
by 2, and so on.
masterClassName must specify the provider's "master"
class. The provider's documentation will specify its master
class. This class is always a subclass of the Provider
class. The subclass constructor sets the values of various properties that are
required for the Java Cryptography API to look up the algorithms or other
facilities implemented by the provider.
Suppose that the master class is COM.acme.provider.Acme,
and that you would like to configure Acme as your third preferred
provider. To do so, add the following line to the java.security
file:
security.provider.3=COM.acme.provider.Acme
Providers may also be registered dynamically. To do so, call either
the addProvider or
insertProviderAt method in the Security class.
This type of registration is not persistent and can only be
done by "trusted" programs. See Security.
Provider Class Methods
Each Provider class instance has a (currently case-sensitive) name,
a version number, and a string
description of the provider and its services. You can query the Provider
instance for this information by calling the following methods:
public String getName()
public double getVersion()
public String getInfo()
The Security class manages installed providers and security-wide
properties. It only contains static methods and is never instantiated.
Note: the methods for adding or removing providers, and for
setting Security properties, can only be executed by a
trusted program. Currently, a "trusted program" is either
a local application not running under a security manager, or
an applet or application with permission to execute the
specified method (see below).
The determination that code is considered trusted to perform
an attempted action (such as adding a provider)
requires that the applet is granted permission for that particular
action.
Code being executed is always considered to come from a particular
"code source". The code source includes not only the location (URL)
where the applet originated from, but also a reference to the public key(s)
corresponding to the private key(s) used to sign the code.
Public keys in a code source are referenced by (symbolic) alias
names from the user's keystore .
In a policy configuration file, a code source is represented by two components:
a code base (URL), and an alias name (preceded by "signedBy"), where
the alias name identifies the keystore entry containing the public key
that must be used to verify the code's signature.
Each "grant" statement in such a file grants a specified code source
a set of permissions, specifying which actions are allowed.
The contents of a sample policy configuration file appear below.
This specifies that only code that was loaded from a signed JAR file
(whose signature can be verified using the public key
referenced by the alias name "sysadmin" in the user's
keystore) from beneath the "/home/sysadmin/" directory
on the local file system can call methods in the Security class to
add or remove providers or to set Security properties.
Either component of the code source (or both) may be missing. An
example where codeBase is missing is:
If this policy is in effect, code that comes in a JAR File signed by "sysadmin"
can add/remove providers - regardless of where the JAR File originated
from.
In this case, code that comes from anywhere beneath the "/home/sysadmin/"
directory on the local filesystem can add/remove providers. The code does
not need to be signed.
An example where neither codeBase nor signedBy is included is:
grant {
permission java.security.SecurityPermission "Security.insertProvider.*";
permission java.security.SecurityPermission "Security.removeProvider.*";
};
Here, with both code source components missing, any code (regardless of where
it originated from, or whether or not it is signed, or who signed
it) can add/remove providers.
Managing Providers
The Security class may be used to query which Providers are installed,
as well as to install new ones at runtime.
Quering Providers
public Provider[] getProviders()
This method returns an array containing all the installed
providers (technically, the Provider subclass for each
package provider). The order of
the Providers in the array is their preference order.
public Provider getProvider(String providerName)
This method returns the Provider named providerName.
It returns null if the Provider is not found.
Adding Providers
public static int addProvider(Provider provider) {
This method adds a Provider to the end of the list of installed
Providers. It returns the
preference position in which the Provider was added, or -1 if the
Provider was not added because it was already installed.
public int insertProviderAt(Provider provider, int position)
This method adds a new Provider, at a specified position. The
position is the preference order in which providers are searched for
requested algorithms (if no specific provider is requested).
The position is 1-based, that is, 1 is most preferred,
followed by 2, and so on. If the given provider is installed at
the requested position,
the provider that used to be at that position, and all providers
with a position greater than position, are shifted up
one position (towards the end of the list of installed providers).
A Provider cannot be added if it is already installed.
This method returns the actual preference position in which the
Provider was added, or -1 if the Provider was not added because it was
already installed.
Note: If you want to change the preference
position of a provider, you must first remove it, and
then insert it back in at the new preference position.
Removing Providers
public void removeProvider(String name)
This method removes the Provider with the specified name. It returns
silently if the Provider is not installed.
When the specified provider is removed, all providers located
at a position greater than where the specified provider was are shifted
down one position (towards the head of the list of installed providers).
Security Properties
The Security class maintains a list of system-wide security
properties. These properties are accessible and settable by a
trusted program via the following methods:
public static String getProperty(String key)
public static void setProperty(String key, String datum)
The MessageDigest class is an engine class
designed to provide
the functionality of cryptographically secure message digests
such as SHA1 or MD5. A cryptographically secure message digest
takes arbitrary-sized input (a byte array), and generates a fixed-size
output, called a digest or hash. A digest has the
following properties:
It should be computationally infeasible to find two messages that
hashed to the same value.
The digest does not reveal anything about the input that was
used to generate it.
Message digests are used to produce unique and reliable identifiers
of data. They are sometimes called the "digital fingerprints"
of data.
Creating a MessageDigest Object
The first step for computing a digest is to create a message digest
instance. As with all engine classes, the
way to get a MessageDigest object for a particular type of message
digest algorithm is to call the getInstance
static factory method on the MessageDigest class:
public static MessageDigest getInstance(String algorithm)
Note: The algorithm name is case-insensitive. For example, all of the
following calls are equivalent:
A caller may optionally specify the name of a provider, which will
guarantee that the implementation of the algorithm requested is from the
named provider:
public static MessageDigest getInstance(String algorithm, String provider)
A call to getInstance returns an initialized message
digest object. It thus does not need further initialization.
Updating a Message Digest Object
The next step for calculating the digest of some data is to supply
the data to the initialized
message digest object. This is done by making one or more calls to
one of
the update methods:
public void update(byte input)
public void update(byte[] input)
public void update(byte[] input, int offset, int len)
Computing the Digest
After the data has been supplied by calls to update methods,
the digest is computed using a call to one of the
digest methods:
public byte[] digest()
public byte[] digest(byte[] input)
public int digest(byte[] buf, int offset, int len)
The first two methods return the computed digest.
The latter method stores the computed digest in the provided buffer
buf, starting at offset. len is
the number of bytes in buf allotted for the digest.
The method returns the number of bytes actually stored in buf.
A call to the digest method that takes an input byte array
argument is equivalent to making a call to
public void update(byte[] input)
with the specified input, followed by a call to the digest
method without any arguments.
The Signature class is an engine class
designed to provide the
functionality of a cryptographic digital signature algorithm such as DSA or
RSA with MD5. A cryptographically secure signature algorithm takes
arbitrary-sized input and a private key and generates a relatively
short (often fixed-size) string of bytes, called the signature,
with the following properties:
Given the public key corresponding to the private key used
to generate the signature, it should be possible to verify the
authenticity and integrity of the input.
The signature and the public key do not reveal anything about
the private key.
A Signature object can be used to sign data. It can also be used to
verify whether or not an alleged signature is in fact the authentic
signature of the data associated with it.
Please see the Examples section for an example
of signing and verifying data.
Signature Object States
Signature objects are modal objects. This means that a Signature
object is always in a given state, where it may only do
one type of operation. States are represented as final integer constants
defined in their respective classes (such as Signature).
The three states a Signature object may have are:
UNINITIALIZED
SIGN
VERIFY
When it is first created, a Signature object is in the UNINITIALIZED
state. The Signature class defines two initialization methods,
initSign and initVerify, which change the
state to SIGN and VERIFY, respectively.
Creating a Signature Object
The first step for signing or verifying a signature is to create a
Signature instance. As with all engine classes, the
way to get a Signature object for a particular type of signature
algorithm is to call the getInstance
static factory method on the Signature class:
public static Signature getInstance(String algorithm)
Note: The algorithm name is case-insensitive.
A caller may optionally specify the name of a provider, which will
guarantee that the implementation of the algorithm requested is from the
named provider:
public static Signature getInstance(String algorithm,
String provider)
Initializing a Signature Object
A Signature object must be initialized before it is used. The
initialization method depends on whether the object is first going
to be used for signing or for verification.
If it is going to be used for signing, the object
must first be initialized with the private key of the entity whose
signature is going to be generated. This initialization is done by
calling the method:
public final void initSign(PrivateKey privateKey)
This method puts the Signature object in the SIGN state.
If instead the Signature object is going to be used for verification,
it must first be initialized with the public key of the entity whose
signature is going to be verified. This initialization is done by
calling the method:
public final void initVerify(PublicKey publicKey)
This method puts the Signature object in the VERIFY state.
Signing
If the Signature object has been initialized for signing (if it
is in the SIGN state), the data to be signed can then be supplied
to the object. This is done by making one or more calls to
one of the update methods:
public final void update(byte b)
public final void update(byte[] data)
public final void update(byte[] data, int off, int len)
Calls to the update method(s) should be made
until all the data to be signed has been supplied to the Signature
object.
To generate the signature, simply call one of the sign methods:
public final byte[] sign()
public final int sign(byte[] outbuf, int offset, int len)
The first method returns the signature result in a byte array.
The second stores the signature result in the provided buffer
outbuf, starting at offset. len is
the number of bytes in outbuf allotted for the signature.
The method returns the number of bytes actually stored.
The signature is encoded as a standard ASN.1 sequence of
two integers, r and s. See
Appendix B for
more information about
the use of ASN.1 encoding in the Java Cryptography Architecture.
A call to a sign method resets the signature object to
the state it was in when previously initialized for signing via a
call to initSign. That is, the object is
reset and available to generate another signature with the same
private key, if desired, via new calls to update and
sign.
Alternatively, a new call can be made to initSign
specifying a different private key, or
to initVerify (to initialize the Signature object to
verify a signature).
Verifying
If the Signature object has been initialized for verification (if it
is in the VERIFY state), it can then verify
whether or not an alleged signature is in fact the authentic signature
of the data associated with it. To start the process, the data to be
verified (as opposed to the signature itself) is supplied
to the object. This is done by making one or more calls to
one of the update methods:
public final void update(byte b)
public final void update(byte[] data)
public final void update(byte[] data, int off, int len)
Calls to the update method(s) should be made
until all the data has been supplied to the Signature
object.
The signature can then be verified by calling the verify
method:
public final boolean verify(byte[] encodedSignature)
The argument must be a byte array containing the signature encoded as
a standard ASN.1 sequence of two integers, r and
s. This is a
standard encoding that is frequently utilized. It is the same as that
produced by the sign method.
The verify method returns a boolean indicating
whether or not the
encoded signature is the authentic signature of the data
supplied to the update method(s).
A call to the verify method resets the signature object to
the state
it was in when previously initialized for verification via a
call to initVerify. That is, the object is
reset and available to verify another signature from the identity
whose public key was specified in the call to initVerify.
Alternatively, a new call can be made to initVerify
specifying a different public key (to initialize the Signature
object for verifying a signature from a different entity), or
to initSign (to initialize the Signature object for
generating a signature).
An algorithm parameter specification is a transparent representation of
the sets of parameters used with an algorithm.
A transparent representation of a set of parameters
means that you can access each parameter value in the set individually,
through one of the "get" methods defined
in the corresponding specification class (e.g., DSAParameterSpec
defines getP, getQ, and
getG methods, to access p, q, and g, respectively).
This is contrasted with an opaque representation, as supplied by the
AlgorithmParameters class, in which
you have no direct access to the parameter fields;
you can only get the name of the algorithm associated with the
parameter set (via getAlgorithm) and some kind of encoding for the
parameter set (via getEncoded).
The algorithm parameter specification interfaces and classes that appear in
the java.security.spec package are described below.
AlgorithmParameterSpec is an interface to a transparent specification of
cryptographic parameters.
This interface contains no methods or constants. Its only purpose
is to group (and provide type safety for) all parameter specifications.
All parameter specifications must implement this interface.
This class (which implements the AlgorithmParameterSpec interface)
specifies the set of parameters used with the DSA algorithm.
It has the following methods:
public BigInteger getP()
public BigInteger getQ()
public BigInteger getG()
These methods return the DSA algorithm
parameters: the prime p,
the sub-prime q, and the base g.
The AlgorithmParameters class is an engine class
that provides an opaque representation of cryptographic parameters.
An opaque representation is one in which
you have no direct access to the parameter fields;
you can only get the name of the algorithm associated with the
parameter set and some kind of encoding for the
parameter set. This is in contrast to a
transparent representation of parameters, in which you can access
each value individually, through one of the "get" methods defined
in the corresponding specification class.
Note: you can call the AlgorithmParameters getParameterSpec method to
convert an AlgorithmParameters object to a transparent
specification (see below).
Creating an AlgorithmParameters Object
As with all engine classes, the
way to get an AlgorithmParameters object for a particular type of
algorithm is to call the getInstance
static factory method on the AlgorithmParameters class:
public static AlgorithmParameters getInstance(String algorithm)
Note: The algorithm name is case-insensitive.
A caller may optionally specify the name of a provider, which will
guarantee that the algorithm parameter implementation requested is from
the named provider:
public static AlgorithmParameters getInstance(String algorithm, String provider)
Initializing an AlgorithmParameters Object
Once an AlgorithmParameters object is instantiated, it must be
initialized via a call to init, using an appropriate parameter
specification or parameter encoding:
public void init(AlgorithmParameterSpec paramSpec)
public void init(byte[] params)
public void init(byte[] params, String format)
In the above, params is an array containing the encoded parameters,
and format is the name of the decoding format. In the
init method with a params argument but
no format argument, the
primary decoding format for parameters is used. The primary decoding
format is ASN.1, if an ASN.1 specification for the parameters
exists.
Note: AlgorithmParameters objects can be initialized only once,
that is, they are not reusable.
Obtaining the Encoded Parameters
A byte encoding of the parameters represented in an AlgorithmParameters
object may be obtained via a call to getEncoded:
public byte[] getEncoded()
This returns the parameters in their primary encoding format.
The primary encoding format for parameters is ASN.1, if an ASN.1
specification for this type of parameters exists.
If you want the parameters returned in a specified encoding format,
use
public byte[] getEncoded(String format)
If format is null, the primary encoding format for parameters is used,
as in the other getEncoded method.
Please note: in the default AlgorithmParameters implementation, supplied
by the "SUN" provider, the format argument is currently ignored.
Converting an AlgorithmParameters Object to a Transparent Specification
A transparent parameter specification for the algorithm parameters
may be obtained from an AlgorithmParameters object via a call to
getParameterSpec:
public AlgorithmParameterSpec getParameterSpec(Class paramSpec)
paramSpec identifies the specification class in which
the parameters should be returned. It could, for example, be
DSAParameterSpec.class, to indicate that the
parameters should be returned in an instance of the
DSAParameterSpec class
(which is in the java.security.spec package).
The AlgorithmParameterGenerator class is an engine class
used to generate a set of parameters suitable for a certain algorithm
(the algorithm specified when an AlgorithmParameterGenerator instance
is created).
Creating an AlgorithmParameterGenerator Object
As with all engine classes, the
way to get an AlgorithmParameterGenerator object for a particular type of
algorithm is to call the getInstance
static factory method on the AlgorithmParameterGenerator class:
public static AlgorithmParameterGenerator getInstance(
String algorithm)
Note: The algorithm name is case-insensitive.
A caller may optionally specify the name of a provider, which will
guarantee that the algorithm parameter generator implementation is from the
named provider:
public static AlgorithmParameterGenerator getInstance(
String algorithm,
String provider)
Initializing an AlgorithmParameterGenerator Object
The AlgorithmParameterGenerator object can be initialized
in two different ways: in an algorithm-independent manner, or in an
algorithm-specific manner.
The algorithm-independent approach uses the fact that all parameter
generators share the concept of a "size" and a
source of randomness. The measure of size is universally shared
by all algorithm parameters, though it is interpreted differently
for different algorithms. For example, in the case of parameters
for the DSA algorithm, "size" corresponds to the size of the
prime modulus, in bits.
(See Appendix B: Algorithms for
information about the sizes for specific algorithms.)
When using this approach, algorithm-specific parameter generation
values - if any - default to some standard values.
There is an init method that
takes these two universally shared types of arguments:
public void init(int size, SecureRandom random);
There is also one that takes just a size
argument; it uses a system-provided source of randomness:
public void init(int size)
The other approach initializes a parameter generator object
using algorithm-specific semantics, which are represented by a set of
algorithm-specific parameter generation values supplied in an
AlgorithmParameterSpec object:
public void init(AlgorithmParameterSpec genParamSpec,
SecureRandom random)
public void init(AlgorithmParameterSpec genParamSpec)
To generate Diffie-Hellman system parameters, for example, the
parameter generation values usually
consist of the size of the prime modulus and the size of the
random exponent, both specified in number of bits.
The Diffie-Hellman algorithm is supplied as part of JCE 1.2.
Generating Algorithm Parameters
Once you have created and initialized an AlgorithmParameterGenerator
object, you can generate the algorithm parameters using the
generateParameters method:
The Key interface is the top-level interface for all opaque keys. It
defines the functionality shared by all opaque key objects.
An opaque key representation is one in which
you have no direct access to the key material that constitues a key.
In other words: "opaque" gives you limited access to the key - just
the three methods defined by the "Key" interface (see below):
getAlgorithm, getFormat, and getEncoded.
This is in contrast to a
transparent representation, in which you can access
each key material value individually, through one of the "get" methods defined
in the corresponding specification class.
All opaque keys have three characteristics:
An Algorithm
This is the key algorithm for that key. The key algorithm is usually
an encryption or asymmetric operation algorithm (such as DSA or
RSA), which will work with those algorithms and with related
algorithms (such as MD5 with RSA, SHA1 with RSA, etc.)
The name of the algorithm of a key is obtained using the method
public String getAlgorithm()
An Encoded Form
This is an external encoded form for the key used when a standard
representation of the key is needed outside the Java Virtual Machine,
as when transmitting the key to some other party. The key
is encoded according to a standard format (such as X.509
or PKCS#8), and is returned using the method:
public byte[] getEncoded()
A Format
This is the name of the format of the encoded key. It is returned by
the method:
public String getFormat()
Keys are generally obtained through key generators, certificates,
key specifications (using a KeyFactory),
or a KeyStore implementation accessing
a "keystore" database used to manage keys.
It is possible to parse encoded keys, in an algorithm-dependent
manner, using a KeyFactory.
Key specifications are transparent representations of the key material
that constitutes a key. If the key is stored on a hardware device, its
specification may contain information that helps identify the key on the
device.
A transparent representation of keys means that you can access
each key material value individually, through one of the "get" methods defined
in the corresponding specification class. For example, DSAPrivateKeySpec
defines getX, getP, getQ, and
getG methods, to access the private key x,
and the DSA algorithm
parameters used to calculate the key: the prime p,
the sub-prime q, and the base g.
This is contrasted with an opaque representation, as defined by the
Key interface, in which
you have no direct access to the key material fields.
In other words, an "opaque" representation gives you limited access to the
key - just the three methods defined by the Key interface:
getAlgorithm, getFormat, and getEncoded.
A key may be specified in an algorithm-specific way, or in an
algorithm-independent encoding format (such as ASN.1).
For example, a DSA private key may be specified by its components
x, p, q, and g
(see DSAPrivateKeySpec), or it may be
specified using its DER encoding
(see PKCS8EncodedKeySpec).
The key specification interfaces and classes appear in the
java.security.spec package. They are described below.
This interface contains no methods or constants. Its only purpose
is to group (and provide type safety for) all key specifications.
All key specifications must implement this interface.
This class (which extends the
RSAPrivateKeySpec class)
specifies an RSA private key, as
defined in the PKCS#1 standard, using the
Chinese Remainder Theorem (CRT) information values.
It has the following methods (in addition to the
methods inherited from its superclass RSAPrivateKeySpec):
public BigInteger getPublicExponent()
public BigInteger getPrimeP()
public BigInteger getPrimeQ()
public BigInteger getPrimeExponentP()
public BigInteger getPrimeExponentQ()
public BigInteger getCrtCoefficient()
These methods return the public exponent e
and the CRT information integers:
the prime factor p of the modulus n,
the prime factor q of n, the
exponent d mod (p-1),
the exponent d mod (q-1), and the Chinese
Remainder Theorem coefficient (inverse of q) mod p.
An RSA private key logically consists of only the modulus
and the private exponent. The presence of the CRT values is
intended for efficiency.
This abstract class (which implements the KeySpec
Interface)represents a public or private key in encoded format.
Its getEncoded method returns the encoded key:
public abstract byte[] getEncoded();
and its getFormat method returns the name of the encoding
format:
public abstract String getFormat();
See below for the concrete implementations PKCS8EncodedKeySpec and
X509EncodedKeySpec.
This class, which is a subclass of EncodedKeySpec, represents the DER encoding
of a private key, according to the
format specified in the PKCS #8 standard.
Its getEncoded method returns the key bytes, encoded according to
the PKCS #8 standard. Its getFormat method returns the string
"PKCS#8".
This class, which is a subclass of EncodedKeySpec, represents the DER
encoding of a public key, according to the format specified
in the X.509 standard.
Its getEncoded method returns the key bytes, encoded according to
the X.509 standard. Its getFormat method returns the string
"X.509".
The KeyFactory class is an engine class
designed to provide conversions between opaque cryptographic keys
(of type Key) and
key specifications (transparent representations
of the underlying key material).
Key factories are bi-directional, i.e., they allow you to build an opaque
key object from a given key specification (key material), or to retrieve
the underlying key material of a key object in a suitable format.
Multiple compatible key specifications may exist for the same key.
For example, a DSA public key may be specified by its components
y, p, q, and g
(see DSAPublicKeySpec), or it may be
specified using its DER encoding according to the X.509 standard
(see X509EncodedKeySpec).
A key factory can be used to translate
between compatible key specifications.
Key parsing can be achieved
through translation between compatible key specifications, e.g., when you
translate from X509EncodedKeySpec to DSAPublicKeySpec, you basically
parse the encoded key into its components. For an example, see
the end of the
Generating/Verifying Signatures Using Key
Specifications and KeyFactory section.
Creating a KeyFactory Object
As with all engine classes, the
way to get a KeyFactory object for a particular type of key
algorithm is to call the getInstance
static factory method on the KeyFactory class:
public static KeyFactory getInstance(String algorithm)
Note: The algorithm name is case-insensitive.
A caller may optionally specify the name of a provider, which will
guarantee that the implementation of the key factory
requested is from the named provider.
public static KeyFactory getInstance(String algorithm, String provider)
Converting Between a Key Specification and a Key Object
If you have a key specification for a public key, you can
obtain an opaque PublicKey object from the specification by using
the generatePublic method:
public PublicKey generatePublic(KeySpec keySpec)
Similarly, if you have a key specification for a private key, you can
obtain an opaque PrivateKey object from the specification by using
the generatePrivate method:
public PrivateKey generatePrivate(KeySpec keySpec)
Converting Between a Key Object and a Key Specification
If you have a Key object, you can get a corresponding key
specification object by calling the getKeySpec method:
public KeySpec getKeySpec(Key key, Class keySpec)
keySpec identifies the specification class in which
the key material should be returned. It could, for example, be
DSAPublicKeySpec.class, to indicate that the
key material should be returned in an instance of the
DSAPublicKeySpec class.
The CertificateFactory class is an engine class
that defines the functionality of a certificate factory, which is
used to generate certificate and certificate revocation list (CRL) objects
from their encodings.
A certificate factory for X.509 must return certificates that are an
instance of java.security.cert.X509Certificate, and CRLs
that are an instance of java.security.cert.X509CRL.
Creating a CertificateFactory Object
As with all engine classes, the
way to get a CertificateFactory object for a particular certificate or CRL
type is to call the getInstance
static factory method on the CertificateFactory class:
public static CertificateFactory getInstance(String type)
Note: The type name is case-insensitive.
A caller may optionally specify the name of a provider, which will
guarantee that the implementation of the certificate factory
requested is from the named provider.
public static CertificateFactory getInstance(String type, String provider)
Generating Certificate Objects
To generate a certificate object and initialize it with
the data read from an input stream, use the
generateCertificate method:
public final Certificate generateCertificate(InputStream inStream)
To return a (possibly empty) collection view of the certificates read
from a given input stream, use the
generateCertificates method:
public final Collection generateCertificates(InputStream inStream)
Generating CRL Objects
To generate a certificate revocation list (CRL) object and initialize it with
the data read from an input stream, use the
generateCRL method:
public final CRL generateCRL(InputStream inStream)
To return a (possibly empty) collection view of the CRLs read
from a given input stream, use the
generateCRLs method:
public final Collection generateCRLs(InputStream inStream)
The KeyPair class is a simple holder for a key pair (a public key and a
private key). It has two public methods, one for returning the private
key, and the other for returning the public key:
public PrivateKey getPrivate()
public PublicKey getPublic()
The KeyPairGenerator class is an engine class
used to generate pairs of public and private keys.
There are two ways to generate a key pair: in an
algorithm-independent
manner, and in an algorithm-specific manner. The only difference
between the two is the initialization of the object.
Please see the Examples section for examples
of calls to the methods documented below.
Creating a KeyPairGenerator
All key pair generation starts with a KeyPairGenerator. This is
done using one of the factory methods on KeyPairGenerator:
public static KeyPairGenerator getInstance(String algorithm)
public static KeyPairGenerator getInstance(String algorithm,
String provider)
Note: The algorithm name is case-insensitive.
Initializing a KeyPairGenerator
A key pair generator for a particular algorithm
creates a public/private key pair that can be used with
this algorithm.
It also associates algorithm-specific parameters with
each of the generated keys.
A key pair generator needs to be initialized before it can generate
keys. In most cases,
algorithm-independent initialization is sufficient. But in other
cases, algorithm-specific initialization is utilized.
Algorithm-Independent Initialization
All key pair generators share the concepts of a keysize and a
source of randomness. The keysize is
interpreted differently for different algorithms.
For example, in the case of the DSA algorithm, the keysize
corresponds to the length of the modulus.
(See Appendix B: Algorithms for
information about the keysizes for specific algorithms.)
There is an initialize method that
takes these two universally shared types of arguments:
public void initialize(int keysize, SecureRandom random)
There is also one that takes just a keysize
argument; it uses a system-provided source of randomness:
public void initialize(int keysize)
Since no other parameters are specified when you call the above
algorithm-independent initialize
methods, it is up to the provider what to do about the algorithm-specific
parameters (if any) to be associated with each of the keys.
If the algorithm is a "DSA" algorithm, and the modulus size (keysize)
is 512, 768, or 1024, then the "SUN" provider uses a set of precomputed
values for the p, q, and
g parameters. If the modulus size is
not one of the above values, the "SUN" provider creates a new
set of parameters. Other providers might have
precomputed parameter sets for more than just the three modulus sizes
mentioned above. Still others might not have a list of precomputed
parameters at all and instead always create new parameter sets.
Algorithm-Specific Initialization
For situations where a set of algorithm-specific parameters already
exists (e.g., so-called "community parameters" in DSA),
there are two initialize methods that have an
AlgorithmParameterSpec argument.
One also has a SecureRandom argument, while the source of
randomness is system-provided for the other:
public void initialize(AlgorithmParameterSpec params,
SecureRandom random)
public void initialize(AlgorithmParameterSpec params)
Generating a key pair is always the same, regardless of initialization
(and therefore of algorithm). You always call the following method from
KeyPairGenerator:
public KeyPair generateKeyPair()
Multiple calls to generateKeyPair will yield different key pairs.
A database called a "keystore" can be used to
manage a repository of keys and certificates.
(A certificate is a digitally signed statement
from one entity, saying that the public key of some other entity has a
particular value.)
The keystore is by default stored in a file
named .keystore in the user's home directory, as determined by the
"user.home" system property. On Solaris systems "user.home"
defaults
to the user's home directory. On Windows systems, given user name
uName,
"user.home" defaults to:
C:\Winnt\Profiles\uName on multi-user Windows NT systems
C:\Windows\Profiles\uName on multi-user Windows 95 systems
The KeyStore class supplies
well-defined interfaces to access and modify the information
in a keystore. It is possible for there to be
multiple different concrete implementations, where each
implementation is that for a particular type of keystore.
Currently, there are two command-line tools that make use of KeyStore:
keytool and jarsigner, and also a GUI-based tool
named policytool. It is also used by the default Policy
implementation when it processes policy files specifying the
permissions (allowed accesses to system resources) to be granted
to code from various sources.
Since KeyStore
is publicly available, JDK users can write additional security applications
that use it.
There is a built-in default implementation, provided by
Sun Microsystems. It implements the keystore as a file, utilizing
a proprietary keystore type (format) named "JKS".
It protects each private key with its individual password, and also protects
the integrity of the entire keystore with a
(possibly different) password.
Keystore implementations are provider-based. More specifically,
the application interfaces supplied by KeyStore are
implemented in terms of a "Service Provider Interface" (SPI).
That is, there is a corresponding abstract KeystoreSpi class,
also in the java.security package, which defines the Service
Provider Interface methods that "providers" must implement.
(The term "provider" refers to a package or a set of packages that supply
a concrete implementation of a subset of services that can be accessed
by the JDK Security API.)
Thus, to provide a keystore implementation, clients must implement a
"provider" and supply a KeystoreSpi subclass implementation, as described in
How to Implement a
Provider for the Java Cryptography Architecture.
Applications can choose different types of keystore implementations
from different providers, using the "getInstance" factory method supplied
in the KeyStore class.
A keystore type defines the storage and data format of the keystore
information, and the algorithms used to
protect private keys in the keystore and the integrity of the keystore
itself. Keystore implementations of different types are not compatible.
The default keystore type is "jks" (the proprietary type of the
keystore implementation provided by the "SUN" provider). This is specified by
the following line in the security properties file:
keystore.type=jks
To have tools and other applications utilize a keystore implementation
other than the default, you can change that line to specify a different
keystore type. Another solution would be to let users of your tools
and applications specify a keystore type, and pass that value to the
getInstance method of KeyStore.
An example of the former approach is the following:
If you have a provider package that supplies a
keystore implementation for a keystore type called "pkcs12",
change the line to
keystore.type=pkcs12
Note: case doesn't matter in keystore type designations. For example,
"JKS" would be considered the same as "jks".
The KeyStore class is an engine class
that supplies well-defined interfaces to access and modify the information
in a keystore.
This class represents an in-memory collection of keys and certificates.
It manages two types of entries:
Key Entry
This type of keystore entry holds very sensitive cryptographic key
information, which is stored in a protected format to prevent unauthorized
access.
Typically, a key stored in this type of entry is a secret key, or a
private key accompanied by the certificate chain authenticating the
corresponding public key.
Private keys and certificate chains are used by a given entity for
self-authentication using digital signatures. For example, software
distribution organizations digitally sign JAR files as part of releasing
and/or licensing software.
Trusted Certificate Entry
This type of entry contains a single public key certificate belonging to
another party. It is called a trusted certificate because the
keystore owner trusts that the public key in the certificate indeed belongs
to the identity identified by the subject (owner) of the
certificate.
This type of entry can be used to authenticate other parties.
Each entry in a keystore is identified by an "alias" string. In the
case of private keys and their associated certificate chains, these strings
distinguish among the different ways in which the entity may authenticate
itself. For example, the entity may authenticate itself using different
certificate authorities, or using different public key algorithms.
Whether keystores are persistent, and the mechanisms used by the
keystore if it is persistent, are not specified here. This allows
use of a variety of techniques for protecting sensitive (e.g., private or
secret) keys. Smart cards or other integrated cryptographic engines
(SafeKeyper) are one option, and simpler mechanisms such as files may also
be used (in a variety of formats).
The main KeyStore methods are described below.
Creating a KeyStore Object
As with all engine classes, the
way to get a KeyStore object is to call the getInstance
static factory method on the KeyStore class:
public static KeyStore getInstance(String type)
A caller may optionally specify the name of a provider, which will
guarantee that the implementation of the type requested is from the
named provider:
public static KeyStore getInstance(String type, String provider)
Loading a Particular Keystore into Memory
Before a KeyStore object can be used, the actual keystore data
must be loaded into memory via the load method:
public final void load(InputStream stream, String password)
The optional password is used to check the integrity of the keystore
data. If no password is supplied, no integrity check
is performed.
In order to create an empty keystore, you pass null
as the InputStream argument to the load method.
Getting a List of the Keystore Aliases
All keystore entries are accessed via unique aliases.
The aliases method returns an enumeration of the alias names
in the keystore:
public final Enumeration aliases()
Determining Keystore Entry Types
As stated in The KeyStore Class, there are
two different types of entries in a keystore.
The following methods determine whether the entry specified by the
given alias is a key/certificate or a trusted certificate entry,
respectively:
public final boolean isKeyEntry(String alias)
public final boolean isCertificateEntry(String alias)
Adding/Setting/Deleting Keystore Entries
The setCertificateEntry method assigns a certificate to a specified
alias:
public final void setCertificateEntry(String alias, Certificate cert)
If alias doesn't exist, a trusted certificate entry with
that alias is created. If alias exists and identifies
a trusted certificate entry, the certificate associated
with it is replaced by cert.
The setKeyEntry methods add (if alias doesn't
yet exist) or set key entries:
public final void setKeyEntry(String alias, Key key, String password,
Certificate[] chain)
public final void setKeyEntry(String alias, byte[] key,
Certificate[] chain)
In the method with key as a byte array, it is the bytes for a
key in protected format. For
example, in the keystore implementation supplied by the "SUN" provider,
the key byte array is expected to contain a protected private
key, encoded as an EncryptedPrivateKeyInfo as defined in the
PKCS#8 standard. In the other method, the password is
the password used to protect the key.
The deleteEntry method deletes an entry:
public final void deleteEntry(String alias)
Getting Information from the Keystore
The getKey method returns the key associated with the
given alias. The key is recovered using the given password:
public final Key getKey(String alias, String password)
The following methods return the certificate, or certificate chain,
respectively, associated with the given alias:
public final Certificate getCertificate(String alias)
public final Certificate[] getCertificateChain(String alias)
You can determine the name (alias) of the first entry whose
certificate matches a given certificate via the following:
public final String getCertificateAlias(Certificate cert)
Saving the KeyStore
The in-memory keystore can be saved via the store method:
public final void store(OutputStream stream, String password)
The password is used to calculate an integrity
checksum of the keystore data, which is appended to the
keystore data.
The SecureRandom class is an engine class
that provides the functionality
of a random number generator.
Creating a SecureRandom Object
As with all engine classes, the
way to get a SecureRandom object is to call the getInstance
static factory method on the SecureRandom class:
public static SecureRandom getInstance(String algorithm)
A caller may optionally specify the name of a provider, which will
guarantee that the implementation of the random number
generation (RNG) algorithm requested is from the
named provider:
public static final SecureRandom getInstance(String algorithm,
String provider)
Seeding or Re-Seeding the SecureRandom Object
The SecureRandom implementation attempts to completely
randomize the internal state of the generator itself unless
the caller follows the call to a getInstance method
with a call to one of the setSeed methods:
synchronized public void setSeed(byte[] seed)
public void setSeed(long seed)
Once the SecureRandom object has been seeded, it will produce bits as random
as the original seeds.
At any time a SecureRandom object may be re-seeded using one of the
setSeed methods. The given seed supplements,
rather than replaces, the existing seed. Thus, repeated calls
are guaranteed never to reduce randomness.
Using a SecureRandom Object
To get random bytes, a caller simply passes an array of any length,
which is then filled with random bytes:
synchronized public void nextBytes(byte[] bytes)
Generating Seed Bytes
If desired, it is possible to invoke the generateSeed method
to generate a given number of seed bytes (to seed other random number
generators, for example):
This call assigns a properly initialized message digest object
to the sha variable. The implementation implements the Secure
Hash Algorithm (SHA), as defined in the National Institute for
Standards and Technology's (NIST) FIPS 180-1 document. See
Appendix A for a complete discussion of
standard names and algorithms.
Next, suppose we have three byte arrays, i1, i2
and i3, which form the total input whose message digest we
want to compute. This digest (or "hash") could be calculated via the
following calls:
After the message digest has been calculated, the message digest object
is automatically reset and ready to receive new data and calculate its
digest. All former state (i.e., the data supplied to update
calls) is lost.
Some hash implementations may support intermediate hashes through
cloning. Suppose we want to calculate separate hashes for:
i1
i1 and i2
i1, i2, and i3
A way to do it is:
/* compute the hash for i1 */
sha.update(i1);
byte[] i1Hash = sha.clone().digest();
/* compute the hash for i1 and i2 */
sha.update(i2);
byte[] i12Hash = sha.clone().digest();
/* compute the hash for i1, i2 and i3 */
sha.update(i3);
byte[] i123hash = sha.digest();
This works only if the SHA implementation
is cloneable. While some implementations of message digests are cloneable,
others are not. To determine whether or not cloning is possible, attempt
to clone the MessageDigest object and catch the
potential exception as follows:
try {
// try and clone it
/* compute the hash for i1 */
sha.update(i1);
byte[] i1Hash = sha.clone().digest();
. . .
byte[] i123hash = sha.digest();
} catch (CloneNotSupportedException cnse) {
// do something else, such as the code shown below
}
If a message digest is not cloneable, the other, less elegant
way to compute intermediate digests is to create several digests.
In this case, the number of intermediate digests
to be computed must be known in advance:
In this example we will generate a public-private key pair for the
algorithm named
"DSA" (Digital Signature Algorithm). We will generate keys
with a 1024-bit modulus, using a user-derived seed,
called userSeed. We don't care which provider supplies
the algorithm implementation.
The next step is to initialize the key pair generator. In most cases,
algorithm-independent initialization is sufficient, but in some
cases, algorithm-specific initialization is utilized.
Algorithm-Independent Initialization
All key pair generators share the concepts of a keysize and a
source of randomness. A KeyPairGenerator class
initialize method has these two types of arguments. Thus,
to generate keys with a keysize of 1024 and a new
SecureRandom object seeded by
the userSeed value, you can
use the following code:
SecureRandom random = SecureRandom.getInstance("SHA1PRNG", "SUN");
random.setSeed(userSeed);
keyGen.initialize(1024, random);
Since no other parameters are specified when you call the above
algorithm-independent initialize
method, it is up to the provider what to do about the algorithm-specific
parameters (if any) to be associated with each of the keys.
The provider may use precomputed parameter values, or may
generate new values.
Algorithm-Specific Initialization
For situations where a set of algorithm-specific parameters already
exists (e.g., so-called "community parameters" in DSA),
there are two initialize methods that have an
AlgorithmParameterSpec argument.
Suppose your key pair generator is for the "DSA" algorithm, and you have a
set of DSA-specific parameters, p,
q, and g, that you would like to
use to generate your key pair. You could execute the following code
to initialize your key pair generator (recall that
DSAParameterSpec
is an AlgorithmParameterSpec):
DSAParameterSpec dsaSpec = new DSAParameterSpec(p, q, g);
SecureRandom random = SecureRandom.getInstance("SHA1PRNG", "SUN");
random.setSeed(userSeed);
keyGen.initialize(dsaSpec, random);
(Note: The parameter named p is a prime number whose length is the
modulus length ("size"). Thus, you don't need to call any other method to
specify the modulus length.)
Generating the Pair of Keys
The final step is generating the key pair. No matter which type of
initialization was utilized (algorithm-independent or
algorithm-specific), the same code is used to generate the
key pair:
Next, using the key pair generated in the
key pair example, we initialize
the object with the private key, then sign a byte array called
data.
/* Initializing the object with a private key */
PrivateKey priv = pair.getPrivate();
dsa.initSign(priv);
/* Update and sign the data */
dsa.update(data);
byte[] sig = dsa.sign();
Verifying the signature is straightforward. (Note: here we also use
the key pair generated in the key pair example.)
/* Initializing the object with the public key */
PublicKey pub = pair.getPublic();
dsa.initVerify(pub);
/* Update and verify the data */
dsa.update(data);
boolean verifies = dsa.verify(sig);
System.out.println("signature verifies: " + verifies);
Suppose that, rather than having a public/private key pair (as, for example, was
generated in the key pair example above),
you simply have the components of
your DSA private key: x (the private
key), p (the prime), q (the sub-prime),
and g (the base).
Further suppose you want to use your private key to digitally sign
some data, which is in a byte array named someData.
You would do the following steps, which also illustrate creating a
key specification and using a key
factory to obtain a PrivateKey from the key specification
(initSign requires a PrivateKey):
DSAPrivateKeySpec dsaPrivKeySpec =
new DSAPrivateKeySpec(x, p, q, g);
KeyFactory keyFactory = KeyFactory.getInstance("DSA");
PrivateKey privKey = keyFactory.generatePrivate(dsaPrivKeySpec);
Signature sig = Signature.getInstance("SHA1withDSA");
sig.initSign(privKey);
sig.update(someData);
byte[] signature = sig.sign();
Suppose Alice wants to use the data you signed. In order for her to
do so, and to verify your signature, you need to send her three things:
the data,
the signature, and
the public key corresponding to the private key you used to sign
the data.
You can store the someData bytes in one file, and
the signature bytes in another, and send those to Alice.
For the public key,
assume, as in the signing example above, you have the components of the
DSA public key
corresponding to the DSA private key used to sign the data. Then you can
create a DSAPublicKeySpec from those components:
DSAPublicKeySpec dsaPubKeySpec =
new DSAPublicKeySpec(y, p, q, g);
You still need to extract the key bytes so that you can put
them in a file. To do so, you can first call the generatePublic method
on the DSA key factory already created
in the example above:
Then you can extract the (encoded) key bytes via the following:
byte[] encKey = pubKey.getEncoded();
You can now store these bytes in a file, and send it to Alice along with
the files containing the data and the signature.
Now, assume Alice has received these files, and she copied the data
bytes from the data file to a byte array named data, the signature
bytes from the signature file to a byte array named signature,
and the encoded public key bytes from the public key file to a byte
array named encodedPubKey.
Alice can now execute the following code to verify the
signature. The code also illustrates how to use a key factory in order to
instantiate a DSA public key from its encoding (initVerify
requires a PublicKey).
X509EncodedKeySpec pubKeySpec = new X509EncodedKeySpec(encodedPubKey);
KeyFactory keyFactory = KeyFactory.getInstance("DSA");
PublicKey pubKey = keyFactory.generatePublic(pubKeySpec);
Signature sig = Signature.getInstance("SHA1withDSA");
sig.initVerify(pubKey);
sig.update(data);
sig.verify(signature);
Note: In the above, Alice needed to generate a PublicKey from the
encoded key bits, since initVerify requires a PublicKey.
Once she has a PublicKey, she could also use the KeyFactory
getKeySpec method to convert it to a DSAPublicKeySpec so that
she can access the components, if desired, as in:
Now she can access the DSA public key components y,
p, q, and g through the
corresponding "get" methods on the DSAPublicKeySpec class
(getY, getP, getQ, and
getG).
The following example reads a file with Base64-encoded certificates,
which are each bounded at the beginning by
-----BEGIN CERTIFICATE-----
and at the end by
-----END CERTIFICATE-----
We convert the
FileInputStream (which does not support mark
and reset) to a ByteArrayInputStream (which
supports those methods), so that each call to
generateCertificate consumes only one certificate, and the
read position of the input stream is positioned to the next certificate in
the file:
FileInputStream fis = new FileInputStream(filename);
DataInputStream dis = new DataInputStream(fis);
CertificateFactory cf = CertificateFactory.getInstance("X.509");
byte[] bytes = new byte[dis.available()];
dis.readFully(bytes);
ByteArrayInputStream bais = new ByteArrayInputStream(bytes);
while (bais.available() > 0) {
Certificate cert = cf.generateCertificate(bais);
System.out.println(cert.toString());
}
The JDK Security API requires and utilizes a set of standard names
for algorithms, certificate and keystore types. This specification
establishes the following names as standard names.
Note: A corresponding list of standard names of encryption and key
agreement algorithms is contained in Appendix A of
the "API Specification & Reference" guide of the Java Cryptography
Extension (JCE 1.2).
You can find more information about this release here:
http://java.sun.com/products/jce/index.html.
See Appendix B for algorithm specifications.
Message Digest Algorithms
The algorithm names in this section can be specified when
generating an instance of MessageDigest.
SHA: The Secure Hash Algorithm, as defined in Secure
Hash Standard, NIST FIPS 180-1.
MD2: The MD2 message digest algorithm as defined in RFC 1319.
MD5: The MD5 message digest algorithm as defined in RFC 1321.
Key and Parameter Algorithms
The algorithm names in this section can be specified when
generating an instance of KeyPairGenerator,
KeyFactory, AlgorithmParameterGenerator, and
AlgorithmParameters.
RSA: The RSA encryption algorithm as defined in PKCS#1.
DSA: The Digital Signature Algorithm as defined in FIPS PUB 186.
Digital Signature Algorithms
The algorithm names in this section can be specified when
generating an instance of Signature.
SHA1withDSA: The DSA with SHA-1 signature algorithm which uses the
SHA-1 digest algorithm and DSA to create and verify DSA digital
signatures as defined in FIPS PUB 186.
MD2withRSA: The MD2 with RSA Encryption signature algorithm
which uses the MD2 digest algorithm and RSA to create and verify RSA
digital signatures as defined in PKCS#1.
MD5withRSA: The MD5 with RSA Encryption signature algorithm
which uses the MD5 digest algorithm and RSA to create and verify RSA
digital signatures as defined in PKCS#1.
SHA1withRSA: The signature algorithm with SHA-1 and the RSA encryption
algorithm as defined in the OSI Interoperability Workshop, using the
padding conventions described in PKCS #1.
Random Number Generation (RNG) Algorithms
The algorithm names in this section can be
specified when generating an instance of SecureRandom.
SHA1PRNG: The name of the pseudo-random number generation
(PRNG) algorithm supplied by the SUN provider. This implementation
follows the IEEE P1363 standard, Appendix G.7: "Expansion of source
bits", and uses SHA1 as the foundation of the PRNG. It computes the
SHA1 hash over a true-random seed value concatenated with a 64-bit
counter which is incremented by 1 for each operation. From the 160-bit
SHA1 output, only 64 bits are used.
Certificate Types
The types in this section can be specified when generating an
instance of CertificateFactory.
X.509: The certificate type defined in X.509.
Keystore Types
The types in this section can be specified when generating an
instance of KeyStore.
JKS: The name of the keystore implementation provided by the
SUN provider.
PKCS12: The transfer syntax for personal identity information
as defined in PKCS#12.
This appendix specifies details concerning some of the algorithms
defined in Appendix A. Any provider supplying an implementation of the
listed algorithms must comply with the specifications in
this appendix. Note: The most recent version of this document is
available from the public web site
http://java.sun.com/products/jdk/1.2/docs/guide/security/index.html.
To add a new algorithm not specified herein, you should first
survey other people or companies supplying provider
packages to see if they
have already added that algorithm, and, if so, use
the definitions they published, if available. Otherwise, you
should create and make available a
template, similar to those found in this Appendix B,
with the specifications for the algorithm you
provide.
Specification Template
The algorithm specifications below contain the following fields:
Name
The name by which the algorithm is known. This is the name
passed to the getInstance method (when requesting the
algorithm), and returned by the getAlgorithm method
to determine the name of an existing algorithm object. These
methods are in the relevant engine classes:
Signature,
MessageDigest,
KeyPairGenerator, and
AlgorithmParameterGenerator.
Type
The type of algorithm: Signature, MessageDigest, KeyPairGenerator, or
ParameterGenerator.
Description
General notes about the algorithm, including any standards
implemented by the algorithm, applicable patents, etc.
KeyPair Algorithm (Optional)
The keypair algorithm for this algorithm.
Keysize (Optional)
For a keyed algorithm or key generation algorithm: the legal
keysizes.
Size (Optional)
For an algorithm parameter generation algorithm: the legal
"sizes" for algorithm parameter generation.
Parameter Defaults (Optional)
For a key generation algorithm: the default parameter values.
Signature format (Optional)
For a Signature algorithm, the format of the signature, that is, the
input and output of the verify and sign methods, respectively.
Algorithm Specifications
SHA-1 Message Digest Algorithm
Name: SHA
Type: MessageDigest
Description: The message digest algorithm as defined in NIST's FIPS
180-1. The output of this algorithm is a 160-bit digest.
MD2 Message Digest Algorithm
Name: MD2
Type: MessageDigest
Description: The message digest algorithm as defined in RFC 1319. The
output of this algorithm is a 128-bit (16 byte) digest.
MD5 Message Digest Algorithm
Name: MD5
Type: MessageDigest
Description: The message digest algorithm as defined in RFC 1321. The
output of this algorithm is a 128-bit (16 byte) digest.
The Digital Signature Algorithm
Name: SHA1withDSA
Type: Signature
Description: This algorithm is the signature algorithm described in
NIST FIPS 186, using DSA with the SHA1 message digest algorithm.
KeyPair Algorithm: DSA
Signature Format: an ASN.1 sequence of two INTEGER values:
r and s, in that order:
SEQUENCE ::= {
r INTEGER,
s INTEGER }
RSA-based Signature Algorithms, with MD2, MD5 or SHA1
Names: MD2withRSA, MD5withRSA and SHA1withRSA
Type: Signature
Description: These are the signature algorithms that use the MD2,
MD5, and SHA1 message digest algorithms (respectively) with RSA encryption.
KeyPair Algorithm: RSA
Signature Format: A DER-encoded PKCS#1 block as defined in RSA
Laboratory's Public Key Cryptography Standards Note #1. The data
encrypted is the digest of the data signed.
DSA KeyPair Generation Algorithm
Name: DSA
Type: KeyPairGenerator
Description: This algorithm is the key pair generation algorithm
described in NIST FIPS 186 for DSA.
Keysize: The length, in bits, of the modulus p.
This must range from 512 to 1024, and must be a
multiple of 64. The default keysize is 1024.
Parameter Defaults: The following default parameter values are used
for keysizes of 512, 768, and 1024 bits.