|
Generated by JDiff |
||||||||
| PREV PACKAGE NEXT PACKAGE FRAMES NO FRAMES | |||||||||
This file contains all the changes in documentation in the packagejava.securityas colored differences. Deletions are shownlike this, and additions are shown like this.
If no deletions or additions are shown in an entry, the HTML tags will be what has changed. The new HTML tags are shown in the differences. If no documentation existed, and then some was added in a later version, this change is noted in the appropriate class pages of differences, but the change is not shown on this page. Only changes in existing text are shown here. Similarly, documentation which was inherited from another class or interface is not shown here.
Note that an HTML error in the new documentation may cause the display of other documentation changes to be presented incorrectly. For instance, failure to close a <code> tag will cause all subsequent paragraphs to be displayed differently.
Determines whether the access request indicated by the specified permission should be allowed or denied based on the security policy currently in effect and the context in this object.This method quietly returns if the access request is permitted or throws a suitable AccessControlException otherwise. @param perm the requested permission. @exception AccessControlException if the specified permission is not permitted based on the current security policy and the context encapsulated by this object. @exception NullPointerException if the permission to check for is null.
This exception is thrown by the AccessController to indicate that a requested access (to a critical system resource such as the file system or the network) is denied.
The reason to deny access can vary. For example the requested permission might be of an incorrect type contain an invalid value or request access that is not allowed according to the security policy. Such information should be given whenever possible at the time the exception is thrown. @version 1.
7 099 02/2102/9800 @author Li Gong @author Roland Schemers
The AccessController class is used for three purposes:
- to decide whether an access to a critical system resource is to be allowed or denied based on the security policy currently in effect
- to mark code as being "privileged" thus affecting subsequent access determinations and
- to obtain a "snapshot" of the current calling context so access-control decisions from a different context can be made with respect to the saved context.
The checkPermission method determines whether the access request indicated by a specified permission should be granted or denied. A sample call appears below. In this example
checkPermissionwill determine whether or not to grant "read" access to the file named "testFile" in the "/temp" directory.FilePermission perm = new FilePermission("/temp/testFile" "read"); AccessController.checkPermission(perm);If a requested access is allowed
checkPermissionreturns quietly. If denied an AccessControlException is thrown. AccessControlException can also be thrown if the requested permission is of an incorrect type or contains an invalid value. Such information is given whenever possible. Suppose the current thread traversed m callers in the order of caller 1 to caller 2 to caller m. Then caller m invoked thecheckPermissionmethod. ThecheckPermissionmethod determines whether access is granted or denied based on the following algorithm:i = m; while (i > 0) { if (caller i's domain does not have the permission) throw AccessControlException else if (caller i is marked as privileged) { if (a context was specified in the call to doPrivileged) context.checkPermission(permission) return; } i = i - 1; }; // Next check the context inherited when // the thread was created. Whenever a new thread is created the // AccessControlContext at that time is // stored and associated with the new thread as the "inherited" // context. inheritedContext.checkPermission(permission);A caller can be marked as being "privileged" (see doPrivileged and below). When making access control decisions the
checkPermissionmethod stops checking if it reaches a caller that was marked as "privileged" via adoPrivilegedcall without a context argument (see below for information about a context argument). If that caller's domain has the specified permission no further checking is done andcheckPermissionreturns quietly indicating that the requested access is allowed. If that domain does not have the specified permission an exception is thrown as usual.The normal use of the "privileged" feature is as follows. If you don't need to return a value from within the "privileged" block do the following:
somemethod() { ...normal code here... AccessController.doPrivileged(new PrivilegedAction() { public Object run() { // privileged code goes here for example: System.loadLibrary("awt"); return null; // nothing to return } }); ...normal code here... }PrivilegedAction is an interface with a single method named
runthat returns an Object. The above example shows creation of an implementation of that interface; a concrete implementation of therunmethod is supplied. When the call todoPrivilegedis made an instance of the PrivilegedAction implementation is passed to it. ThedoPrivilegedmethod calls therunmethod from the PrivilegedAction implementation after enabling privileges and returns therunmethod's return value as thedoPrivilegedreturn value (which is ignored in this example).If you need to return a value you can do something like the following:
somemethod() { ...normal code here... String user = (String) AccessController.doPrivileged( new PrivilegedAction() { public Object run() { return System.getProperty("user.name"); } } ); ...normal code here... }If the action performed in your
runmethod could throw a "checked" exception (those listed in thethrowsclause of a method) then you need to use thePrivilegedExceptionActioninterface instead of thePrivilegedActioninterface:somemethod() throws FileNotFoundException { ...normal code here... try { FileInputStream fis = (FileInputStream) AccessController.doPrivileged( new PrivilegedExceptionAction() { public Object run() throws FileNotFoundException { return new FileInputStream("someFile"); } } ); } catch (PrivilegedActionException e) { // e.getException() should be an instance of FileNotFoundException // as only "checked" exceptions will be "wrapped" in a //PrivilegedActionException. throw (FileNotFoundException) e.getException(); } ...normal code here... }Be *very* careful in your use of the "privileged" construct and always remember to make the privileged code section as small as possible.
Note that
checkPermissionalways performs security checks within the context of the currently executing thread. Sometimes a security check that should be made within a given context will actually need to be done from within a different context (for example from within a worker thread). The getContext method and AccessControlContext class are provided for this situation. ThegetContextmethod takes a "snapshot" of the current calling context and places it in an AccessControlContext object which it returns. A sample call is the following:AccessControlContext acc = AccessController.getContext()AccessControlContext itself has a
checkPermissionmethod that makes access decisions based on the context it encapsulates rather than that of the current execution thread. Code within a different context can thus call that method on the previously-saved AccessControlContext object. A sample call is the following:acc.checkPermission(permission)There are also times where you don't know a priori which permissions to check the context against. In these cases you can use the doPrivileged method that takes a context:
somemethod() { AccessController.doPrivileged(new PrivilegedAction() { public Object run() { // Code goes here. Any permission checks from this // point forward require both the current context and // the snapshot's context to have the desired permission. } } acc); ...normal code here... }@see AccessControlContext @version 1.45 9847 00/0902/1102 @author Li Gong @author Roland Schemers
TheClass AlgorithmParameterGenerator, constructor AlgorithmParameterGenerator(AlgorithmParameterGeneratorSpi, Provider, String)AlgorithmParameterGeneratorclass is used to generate a set of parameters to be used with a certain algorithm. Parameter generators are constructed using thegetInstancefactory methods (static methods that return instances of a given class).The object that will generate the parameters 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). When using this approach algorithm-specific parameter generation values - if any - default to some standard values unless they can be derived from the specified 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. 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.
In case the client does not explicitly initialize the AlgorithmParameterGenerator (via a call to an
initmethod) each provider must supply (and document) a default initialization. For example the Sun provider uses a default modulus prime size of 1024 bits for the generation of DSA parameters. @author Jan Luehe @version 1.31 9836 02/1202/0300 @see AlgorithmParameters @see java.security.spec.AlgorithmParameterSpec @sinceJDK11.2
Creates an AlgorithmParameterGenerator object. @paramClass AlgorithmParameterGenerator, void init(AlgorithmParameterSpec)keyFacSpiparamGenSpi the delegate @param provider the provider @param algorithm the algorithm
Initializes this parameter generator with a set of algorithm-specific parameter generation values. To generate the parameters theClass AlgorithmParameterGenerator, void init(AlgorithmParameterSpec, SecureRandom)SecureRandomimplementation of the highest-priority installed provider is used as the source of randomness. (If none of the installed providers supply an implementation ofSecureRandoma system-provided source of randomness is used.) @paramparamsgenParamSpec the set of algorithm-specific parameter generation values. @exception InvalidAlgorithmParameterException if the given parameter generation values are inappropriate for this parameter generator.
Initializes this parameter generator with a set of algorithm-specific parameter generation values. @paramparamsgenParamSpec the set of algorithm-specific parameter generation values. @param random the source of randomness. @exception InvalidAlgorithmParameterException if the given parameter generation values are inappropriate for this parameter generator.
This class defines the Service Provider Interface (SPI) for theClass AlgorithmParameterGeneratorSpi, void engineInit(AlgorithmParameterSpec, SecureRandom)AlgorithmParameterGeneratorclass which is used to generate a set of parameters to be used with a certain algorithm.All the abstract methods in this class must be implemented by each cryptographic service provider who wishes to supply the implementation of a parameter generator for a particular algorithm.
In case the client does not explicitly initialize the AlgorithmParameterGenerator (via a call to an
engineInitmethod) each provider must supply (and document) a default initialization. For example the Sun provider uses a default modulus prime size of 1024 bits for the generation of DSA parameters. @author Jan Luehe @version 1.6 9811 02/1202/0300 @see AlgorithmParameterGenerator @see AlgorithmParameters @see java.security.spec.AlgorithmParameterSpec @sinceJDK11.2
Initializes this parameter generator with a set of algorithm-specific parameter generation values. @paramparamsgenParamSpec the set of algorithm-specific parameter generation values. @param random the source of randomness. @exception InvalidAlgorithmParameterException if the given parameter generation values are inappropriate for this parameter generator.
This class is used as an opaque representation of cryptographic parameters.Class AlgorithmParameters, constructor AlgorithmParameters(AlgorithmParametersSpi, Provider, String)An
AlgorithmParametersobject for managing the parameters for a particular algorithm can be obtained by calling one of thegetInstancefactory methods (static methods that return instances of a given class).There are two ways to request such an implementation: by specifying either just an algorithm name or both an algorithm name and a package provider.
- If just an algorithm name is specified the system will determine if there is an AlgorithmParameters implementation for the algorithm requested available in the environment and if there is more than one if there is a preferred one.
- If both an algorithm name and a package provider are specified the system will determine if there is an implementation in the package requested and throw an exception if there is not.
Once an
AlgorithmParametersobject is returned it must be initialized via a call toinitusing an appropriate parameter specification or parameter encoding.A transparent parameter specification is obtained from an
AlgorithmParametersobject via a call togetParameterSpecand a byte encoding of the parameters is obtained via a call togetEncoded. @author Jan Luehe @version 1.14 9819 02/1202/0300 @see java.security.spec.AlgorithmParameterSpec @see java.security.spec.DSAParameterSpec @see KeyPairGenerator @sinceJDK11.2
Creates an AlgorithmParameters object. @paramkeyFacSpiparamSpi the delegate @param provider the provider @param algorithm the algorithm
This class defines the Service Provider Interface (SPI) for theAlgorithmParametersclass which is used to manage algorithm parameters.All the abstract methods in this class must be implemented by each cryptographic service provider who wishes to supply parameter management for a particular algorithm. @author Jan Luehe @version 1.
4 988 02/1202/0300 @see AlgorithmParameters @see java.security.spec.AlgorithmParameterSpec @see java.security.spec.DSAParameterSpec @sinceJDK11.2
The AllPermission is a permission that implies all other permissions.Note: Granting AllPermission should be done with extreme care as it implies all other permissions. Thus it grants code the ability to run with security disabled. Extreme caution should be taken before granting such a permission to code. This permission should be used only during testing or in extremely rare cases where an application or applet is completely trusted and adding the necessary permissions to the policy is prohibitively cumbersome. @see java.security.Permission @see java.security.AccessController @see java.security.Permissions @see java.security.PermissionCollection @see java.lang.SecurityManager @version 1.
5 9814 00/1202/0317 @author Roland Schemers @serial exclude
The BasicPermission class extends the Permission class and can be used as the base class for permissions that want to follow the same naming convention as BasicPermission.Class BasicPermission, constructor BasicPermission(String)The name for a BasicPermission is the name of the given permission (for example "exit" "setFactory" "print.queueJob" etc). The naming convention follows the hierarchical property naming convention. An asterisk may appear at the end of the name following a "." or by itself to signify a wildcard match. For example: "java.*" or "*" is valid "*java" or "a*b" is not valid.
The action string (inherited from Permission) is unused. Thus BasicPermission is commonly used as the base class for "named" permissions (ones that contain a name but no actions list; you either have the named permission or you don't.) Subclasses may implement actions on top of BasicPermission if desired.
@see java.security.Permission @see java.security.Permissions @see java.security.PermissionCollection @see java.lang.RuntimePermission @see java.security.SecurityPermission @see java.util.PropertyPermission @see java.awt.AWTPermission @see java.net.NetPermission @see java.lang.SecurityManager @version 1.
18 9826 00/1202/1102 @author Marianne Mueller @author Roland Schemers @serial exclude
Creates a new BasicPermission with the specified name. Name is the symbolic name of the permission such as "setFactory" "print.queueJob" or "topLevelWindow" etc. An asterisk may appear at the end of the name following a "." or by itself to signify a wildcard match. @param name the name of the BasicPermission. @throws NullPointerException ifClass BasicPermission, constructor BasicPermission(String, String)nameisnull. @throws IllegalArgumentException ifnameis empty.
Creates a new BasicPermission object with the specified name. The name is the symbolic name of the BasicPermission and the actions String is currently unused. This constructor exists for use by thePolicyobject to instantiate new Permission objects. @param name the name of the BasicPermission. @param actions ignored. @throws NullPointerException ifnameisnull. @throws IllegalArgumentException ifnameis empty.
This is an interface of abstract methods for managing a variety of identity certificates. An identity certificate is a guarantee by a principal that a public key is that of another principal. (A principal represents an entity such as an individual user a group or a corporation.)
In particular this interface is intended to be a common abstraction for constructs that have different formats but important common uses. For example different types of certificates such as X.509 certificates and PGP certificates share general certificate functionality (the need to encode and decode certificates) and some types of information such as a public key the principal whose key it is and the guarantor guaranteeing that the public key is that of the specified principal. So an implementation of X.509 certificates and an implementation of PGP certificates can both utilize the Certificate interface even though their formats and additional types and amounts of information stored are different.
Important: This interface is useful for cataloging and grouping objects sharing certain common uses. It does not have any semantics of its own. In particular a Certificate object does not make any statement as to the validity of the binding. It is the duty of the application implementing this interface to verify the certificate and satisfy itself of its validity. @version 1.
27 9831 02/1202/0300 @author Benjamin Renaud @deprecated A new certificate handling package is created inJDK1.the Java 2 platform. This Certificate interface is entirely deprecated and is here to allow for a smooth transition to the new package. @see java.security.cert.Certificate
This class extends the concept of a codebase to encapsulate not only the location (URL) but also the certificate(s) that were used to verify signed code originating from that location. @version 1.
26 0928 02/1502/9800 @author Li Gong @author Roland Schemers
This is the generic Message Digest exception. @version 1.10 9812 00/1202/0302 @author Benjamin Renaud
A transparent stream that updates the associated message digest using the bits going through the stream.Class DigestInputStream, MessageDigest getMessageDigest()To complete the message digest computation call one of the
digestmethods on the associated message digest after your calls to one of this digest input stream's read methods.It is possible to turn this stream on or off (see on}) When it is on a call to one of the
readmethods results in an update on the message digest. But when it is off the message digest is not updated. The default is for the stream to be on.Note that digest objects can compute only one digest (see s that in order to compute intermediate digests a caller should retain a handle onto the digest object and clone it for each digest to be computed leaving the orginal digest untouched. @see MessageDigest @see DigestOutputStream @version 1.
30 9834 00/1202/0302 @author Benjamin Renaud
Returns the message digest associated with this stream. @return the message digest associated with this stream. @see #setMessageDigest(java.security.MessageDigest)Class DigestInputStream, int read()
Reads a byte and updates the message digest (if the digest function is on). That is this method reads a byte from the input stream blocking until the byte is actually read. If the digest function is on (see on this method will then call update on the message digest associated with this stream passing it the byte read. @return the byte read. @exception IOException if an I/O error occurs. @see MessageDigest#update(byte)
Class DigestInputStream, int read(byte[], int, int)Reads into a byte array and updates the message digest (if the digest function is on). That is this method reads up toClass DigestInputStream, void setMessageDigest(MessageDigest)lenbytes from the input stream into the arraybstarting at offsetoff. This method blocks until the data is actually read. If the digest function is on (see on this method will then callupdateon the message digest associated with this stream passing it the data. @param b the array into which the data is read. @param off the starting offset intobof where the data should be placed. @param len the maximum number of bytes to be read from the input stream into b starting at offsetoff. @return the actual number of bytes read. This is less thanlenif the end of the stream is reached prior to readinglenbytes. -1 is returned if no bytes were read because the end of the stream had already been reached when the call was made. @exception IOException if an I/O error occurs. @see MessageDigest#update(byte[] int int)
Associates the specified message digest with this stream. @param digest the message digest to be associated with this stream. @see #getMessageDigest()
A transparent stream that updates the associated message digest using the bits going through the stream.Class DigestOutputStream, MessageDigest getMessageDigest()To complete the message digest computation call one of the
digestmethods on the associated message digest after your calls to one of this digest ouput stream's write methods.It is possible to turn this stream on or off (see on}) When it is on a call to one of the
writemethods results in an update on the message digest. But when it is off the message digest is not updated. The default is for the stream to be on. @see MessageDigest @see DigestInputStream @version 1.24 9828 00/1202/0302 @author Benjamin Renaud
Returns the message digest associated with this stream. @return the message digest associated with this stream. @see #setMessageDigest(java.security.MessageDigest)Class DigestOutputStream, void setMessageDigest(MessageDigest)
Associates the specified message digest with this stream. @param digest the message digest to be associated with this stream. @see #getMessageDigest()Class DigestOutputStream, void write(byte[], int, int)
Updates the message digest (if the digest function is on) using the specified subarray and in any case writes the subarray to the output stream. That is if the digest function is on (see on this method callsClass DigestOutputStream, void write(int)updateon the message digest associated with this stream passing it the subarray specifications. This method then writes the subarray bytes to the output stream blocking until the bytes are actually written. @param b the array containing the subarray to be used for updating and writing to the output stream. @param off the offset intobof the first byte to be updated and written. @param len the number of bytes of data to be updated and written frombstarting at offsetoff. @exception IOException if an I/O error occurs. @see MessageDigest#update(byte[] int int)
Updates the message digest (if the digest function is on) using the specified byte and in any case writes the byte to the output stream. That is if the digest function is on (see on this method callsupdateon the message digest associated with this stream passing it the byteb. This method then writes the byte to the output stream blocking until the byte is actually written. @param b the byte to be used for updating and writing to the output stream. @exception IOException if an I/O error occurs. @see MessageDigest#update(byte)
This is the general security exception class which serves to group all the exception classes of thejava.securitypackage that extend from it. (Exceptions are AccessControlException and CertificateException which subclass fromjava.lang.SecurityExceptionand ProviderException and InvalidParameterException which subclass fromjava.lang.RuntimeException.) @version 1.7 989 00/1202/0302 @author Jan Luehe
This interface represents a guard which is an object that is used to protect access to another object.
This interface contains a single method
checkGuardwith a singleobjectargument.checkGuardis invoked (by the GuardedObjectgetObjectmethod) to determine whether or not to allow access to the object. @see GuardedObject @version 1.7 989 00/1202/0302 @author Roland Schemers @author Li Gong
A GuardedObject is an object that is used to protect access to another object.A GuardedObject encapsulates a target object and a Guard object such that access to the target object is possible only if the Guard object allows it. Once an object is encapsulated by a GuardedObject access to that object is controlled by the
getObjectmethod which invokes thecheckGuardmethod on the Guard object that is guarding access. If access is not allowed an exception is thrown. @see Guard @see Permission @version 1.9 9811 00/1202/0302 @author Roland Schemers @author Li Gong
This class represents identities: real-world objects such as people companies or organizations whose identities can be authenticated using their public keys. Identities may also be more abstract (or concrete) constructs such as daemon threads or smart cards.
All Identity objects have a name and a public key. Names are immutable. Identities may also be scoped. That is if an Identity is specified to have a particular scope then the name and public key of the Identity are unique within that scope.
An Identity also has a set of certificates (all certifying its own public key). The Principal names specified in these certificates need not be the same only the key.
An Identity can be subclassed to include postal and email addresses telephone numbers images of faces and logos and so on. @see IdentityScope @see Signer @see Principal @version 1.
5156 @author Benjamin Renaud @deprecated This class is no longer used. Its functionality has been replaced byjava.security.KeyStorethejava.security.certpackage andjava.security.Principal.
This class represents a scope for identities. It is an Identity itself and therefore has a name and can have a scope. It can also optionally have a public key and associated certificates.
An IdentityScope can contain Identity objects of all kinds including Signers. All types of Identity objects can be retrieved added and removed using the same methods. Note that it is possible and in fact expected that different types of identity scopes will apply different policies for their various operations on the various types of Identities.
There is a one-to-one mapping between keys and identities and there can only be one copy of one key per scope. For example suppose Acme Software Inc is a software publisher known to a user. Suppose it is an Identity that is it has a public key and a set of associated certificates. It is named in the scope using the name "Acme Software". No other named Identity in the scope has the same public key. Of course none has the same name as well. @see Identity @see Signer @see Principal @see Key @version 1.
44 9846 00/1202/0302 @author Benjamin Renaud @deprecated This class is no longer used. Its functionality has been replaced byjava.security.KeyStorethejava.security.certpackage andjava.security.Principal.
This is the exception for invalid or inappropriate algorithm parameters. @author Jan Luehe @version 1.5 099 02/2102/9800 @see AlgorithmParameters @see java.security.spec.AlgorithmParameterSpec @sinceJDK11.2
This is the exception for invalid Keys (invalid encoding wrong length uninitialized etc). @version 1.6 0811 02/0102/9600 @author Benjamin Renaud
This exception is thrown when an invalid parameter is passed to a method. @author Benjamin Renaud @version 1.13 9815 00/1202/0302
The Key interface is the top-level interface for all keys. It defines the functionality shared by all key objects. All keys have three characteristics:Keys are generally obtained through key generators certificates or various Identity classes used to manage keys. Keys may also be obtained from key specifications (transparent representations of the underlying key material) through the use of a key factory (see @se PublicKey @see PrivateKey @see KeyPair @see KeyPairGenerator @see KeyFactory @see java.security.spec.KeySpec @see Identity @see Signer @version 1.
- 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 SHA-1 with RSA Raw DSA etc.) The name of the algorithm of a key is obtained using the getAlgorithm method.
- 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 getEncoded method.
- A Format
This is the name of the format of the encoded key. It is returned by the getFormat method.
43479800/1202/0302 @author Benjamin Renaud
This is the basic key exception. @see Key @see InvalidKeyException @see KeyManagementException @version 1.12 9814 00/1202/0302 @author Benjamin Renaud
Key factories are used to convert keys (opaque cryptographic keys of typeClass KeyFactory, constructor KeyFactory(KeyFactorySpi, Provider, String)Key) into key specifications (transparent representations of the underlying key material) and vice versa.Key factories are bi-directional. That is 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 using
DSAPublicKeySpecorX509EncodedKeySpec. A key factory can be used to translate between compatible key specifications.The following is an example of how to use a key factory in order to instantiate a DSA public key from its encoding. Assume Alice has received a digital signature from Bob. Bob also sent her his public key (in encoded format) to verify his signature. Alice then performs the following actions:
X509EncodedKeySpec bobPubKeySpec = new X509EncodedKeySpec(bobEncodedPubKey); KeyFactory keyFactory = KeyFactory.getInstance("DSA"); PublicKey bobPubKey = keyFactory.generatePublic(bobPubKeySpec); Signature sig = Signature.getInstance("DSA"); sig.initVerify(bobPubKey); sig.update(data); sig.verify(signature);@author Jan Luehe @version 1.19 9824 02/1202/0300 @see Key @see PublicKey @see PrivateKey @see java.security.spec.KeySpec @see java.security.spec.DSAPublicKeySpec @see java.security.spec.X509EncodedKeySpec @sinceJDK11.2
Creates a KeyFactory object. @param keyFacSpi the delegate @param provider the provider @param algorithm the name of the algorithm to associate with this KeyFactoryClass KeyFactory, String getAlgorithm()
ReturnsGets the name of the algorithm associated with thiskey factoryKeyFactory. @return the name of the algorithm associated with this KeyFactory
This class defines the Service Provider Interface (SPI) for theKeyFactoryclass. All the abstract methods in this class must be implemented by each cryptographic service provider who wishes to supply the implementation of a key factory for a particular algorithm.Key factories are used to convert keys (opaque cryptographic keys of type
Key) into key specifications (transparent representations of the underlying key material) and vice versa.Key factories are bi-directional. That is 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 using
DSAPublicKeySpecorX509EncodedKeySpec. A key factory can be used to translate between compatible key specifications.A provider should document all the key specifications supported by its key factory. @author Jan Luehe @version 1.
4 988 02/1202/0300 @see KeyFactory @see Key @see PublicKey @see PrivateKey @see java.security.spec.KeySpec @see java.security.spec.DSAPublicKeySpec @see java.security.spec.X509EncodedKeySpec @sinceJDK11.2
This is the general key management exception for all operations dealing with key management. Subclasses could include:@version 1.
- KeyIDConflict
- KeyAuthorizationFailureException
- ExpiredKeyException
9 9811 00/1202/0302 @author Benjamin Renaud @see Key @see KeyException
This class is a simple holder for a key pair (a public key and a private key). It does not enforce any security and when initialized should be treated like a PrivateKey. @see PublicKey @see PrivateKey @version 1.9 9811 00/1202/0302 @author Benjamin Renaud
The KeyPairGenerator class is used to generate pairs of public and private keys. Key pair generators are constructed using theClass KeyPairGenerator, KeyPair genKeyPair()getInstancefactory methods (static methods that return instances of a given class).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.
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:
- 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 (e.g. in the case of the DSA algorithm the keysize corresponds to the length of the modulus). There is an java.security.SecureRandom initialize} method in this KeyPairGenerator class that takes these two universally shared types of arguments. There is also one that takes just a
keysizeargument and uses theSecureRandomimplementation of the highest-priority installed provider as the source of randomness. (If none of the installed providers supply an implementation ofSecureRandoma system-provided source of randomness is used.)Since no other parameters are specified when you call the above algorithm-independent
initializemethods 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 the DSA algorithm and the keysize (modulus size) is 512 768 or 1024 then the Sun provider uses a set of precomputed values for the
pqandgparameters. 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 anAlgorithmParameterSpecargument. One also has aSecureRandomargument while the the other uses theSecureRandomimplementation of the highest-priority installed provider as the source of randomness. (If none of the installed providers supply an implementation ofSecureRandoma system-provided source of randomness is used.)In case the client does not explicitly initialize the KeyPairGenerator (via a call to an
initializemethod) each provider must supply (and document) a default initialization. For example the Sun provider uses a default modulus size (keysize) of 1024 bits.Note that this class is abstract and extends from
KeyPairGeneratorSpifor historical reasons. Application developers should only take notice of the methods defined in thisKeyPairGeneratorclass; all the methods in the superclass are intended for cryptographic service providers who wish to supply their own implementations of key pair generators. @author Benjamin Renaud @version 1.41499802/1202/0300 @see java.security.spec.AlgorithmParameterSpec
Generates a key pair.Class KeyPairGenerator, KeyPair generateKeyPair()UnlessIf
anthisinitialization method isKeyPairGeneratorcalled using a KeyPairGenerator interface algorithmhas not been initialized explicitly provider-specific defaults will be used for the size and other (algorithm-specific) values of the generated keys.This will generate a new key pair every time it is called.
This method is functionally equivalent to generateKeyPair @return the generated key pair @since
JDK11.2
Generates a key pair.Class KeyPairGenerator, void initialize(AlgorithmParameterSpec)UnlessIf
anthisinitialization method isKeyPairGeneratorcalled using a KeyPairGenerator interface algorithmhas not been initialized explicitly provider-specific defaults will be used for the size and other (algorithm-specific) values of the generated keys.This will generate a new key pair every time it is called.
This method is functionally equivalent to genKeyPair @return the generated key pair
Initializes the key pair generator using the specified parameter set and theClass KeyPairGenerator, void initialize(AlgorithmParameterSpec, SecureRandom)SecureRandomimplementation of the highest-priority installed provider as the source of randomness. (If none of the installed providers supply an implementation ofSecureRandoma system-provided source of randomness is used.).This concrete method has been added to this previously-defined abstract class. This method calls the KeyPairGeneratorSpi initialize(java.security.spec.AlgorithmParameterSpe java.security.SecureRandom) initialize} method passing it
paramsand a source of randomness (obtained from the highest-priority installed provider or system-provided if none of the installed providers supply one). Thatinitializemethod always throws an UnsupportedOperationException if it is not overridden by the provider. @param params the parameter set used to generate the keys. @exception InvalidAlgorithmParameterException if the given parameters are inappropriate for this key pair generator. @sinceJDK11.2
Initializes the key pair generator with the given parameter set and source of randomness.Class KeyPairGenerator, void initialize(int)This concrete method has been added to this previously-defined abstract class. This method calls the KeyPairGeneratorSpi initialize(java.security.spec.AlgorithmParameterSpe java.security.SecureRandom) initialize} method passing it
paramsandrandom. Thatinitializemethod always throws an UnsupportedOperationException if it is not overridden by the provider. @param params the parameter set used to generate the keys. @param random the source of randomness. @exception InvalidAlgorithmParameterException if the given parameters are inappropriate for this key pair generator. @sinceJDK11.2
Initializes the key pair generator for a certain keysize using a default parameter set and theClass KeyPairGenerator, void initialize(int, SecureRandom)SecureRandomimplementation of the highest-priority installed provider as the source of randomness. (If none of the installed providers supply an implementation ofSecureRandoma system-provided source of randomness is used.) @param keysize the keysize. This is an algorithm-specific metric such as modulus length specified in number of bits. @exception InvalidParameterException if thekeysizeis not supported by this KeyPairGenerator object.
Initializes the key pair generator for a certain keysize with the given source of randomness (and a default parameter set). @param keysize the keysize. This is an algorithm-specific metric such as modulus length specified in number of bits. @param random the source of randomness. @exception InvalidParameterException if thekeysizeis not supported by this KeyPairGenerator object. @sinceJDK11.2
Class KeyPairGeneratorSpi, KeyPair generateKeyPair()This class defines the Service Provider Interface (SPI) for the
KeyPairGeneratorclass which is used to generate pairs of public and private keys.All the abstract methods in this class must be implemented by each cryptographic service provider who wishes to supply the implementation of a key pair generator for a particular algorithm.
In case the client does not explicitly initialize the KeyPairGenerator (via a call to an
initializemethod) each provider must supply (and document) a default initialization. For example the Sun provider uses a default modulus size (keysize) of 1024 bits. @author Benjamin Renaud @version 1.5 9811 02/1202/0300 @see KeyPairGenerator @see java.security.spec.AlgorithmParameterSpec
Generates a key pair. Unless an initialization method is called using a KeyPairGenerator interface algorithm-specific defaults will be used. This will generate a new key pair every time it is called. @return the newly generated KeyPairClass KeyPairGeneratorSpi, void initialize(AlgorithmParameterSpec, SecureRandom)
Initializes the key pair generator using the specified parameter set and user-provided source of randomness.Class KeyPairGeneratorSpi, void initialize(int, SecureRandom)This concrete method has been added to this previously-defined abstract class. (For backwards compatibility it cannot be abstract.) It may be overridden by a provider to initialize the key pair generator. Such an override is expected to throw an InvalidAlgorithmParameterException if a parameter is inappropriate for this key pair generator. If this method is not overridden it always throws an UnsupportedOperationException. @param params the parameter set used to generate the keys. @param random the source of randomness for this generator. @exception InvalidAlgorithmParameterException if the given parameters are inappropriate for this key pair generator. @since
JDK11.2
Initializes the key pair generator for a certain keysize using the default parameter set. @param keysize the keysize. This is an algorithm-specific metric such as modulus length specified in number of bits. @param random the source of randomness for this generator. @exception InvalidParameterException if the keysize is not supported by this KeyPairGeneratorSpi object.
This class represents an in-memory collection of keys and certificates. It manages two types of entries:Class KeyStore, String getDefaultType()
- 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 for the corresponding public key.
Private keys and certificate chains are used by a given entity for self-authentication. Applications for this authentication include software distribution organizations which 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).
There are two ways to request a KeyStore object: by specifying either just a keystore type or both a keystore type and a package provider.
- If just a keystore type is specified:
KeyStore ks = KeyStore.getInstance("JKS");the system will determine if there is an implementation of the keystore type requested available in the environment and if there is more than one if there is a preferred one.
- If both a keystore type and a package provider are specified:
KeyStore ks = KeyStore.getInstance("JKS" "SUN");the system will determine if there is an implementation of the keystore type in the package requested and throw an exception if there is not.Before a keystore can be accessed it must be char[] loaded}. In order to create an empty keystore you pass
nullas theInputStreamargument to theloadmethod. @author Jan Luehe @version 1.21290902/0402/9800 @see java.security.PrivateKey @see java.security.cert.Certificate @sinceJDK11.2
Returns the default keystore type as specified in the Java security properties file or the stringClass KeyStore, boolean isCertificateEntry(String)""jks"" (acronym for""Java keystore"") if no such property exists. The Java security properties file is located in the file named <JAVA_HOME>/lib/security/java.security where <JAVA_HOME> refers to the directory where theJDKSDK was installed.The default keystore type can be used by applications that do not want to use a hard-coded keystore type when calling one of the
getInstancemethods and want to provide a default keystore type in case a user does not specify its own.The default keystore type can be changed by setting the value of the "keystore.type" security property (in the Java security properties file) to the desired keystore type. @return the default keystore type as specified in the Java security properties file or the string "jks" if no such property exists.
Returns true if the entry identified by the given alias is a trusted certificate entry and false otherwise. @param alias the alias for the keystore entry to be checked @return true if the entry identified by the given alias is a trusted certificate entry false otherwise. @exception KeyStoreException if the keystore has not been initialized (loaded).Class KeyStore, boolean isKeyEntry(String)
Returns true if the entry identified by the given alias is a key entry and false otherwise. @param alias the alias for the keystore entry to be checked @return true if the entry identified by the given alias is a key entry false otherwise. @exception KeyStoreException if the keystore has not been initialized (loaded).
This is the generic KeyStore exception. @author Jan Luehe @version 1.3 097 02/2102/9800 @sinceJDK11.2
This class defines the Service Provider Interface (SPI) for theClass KeyStoreSpi, boolean engineIsCertificateEntry(String)KeyStoreclass. All the abstract methods in this class must be implemented by each cryptographic service provider who wishes to supply the implementation of a keystore for a particular keystore type. @author Jan Luehe @version 1.4 069 02/2902/9800 @see KeyStore @sinceJDK11.2
Returns true if the entry identified by the given alias is a trusted certificate entry and false otherwise. @param alias the alias for the keystore entry to be checked @return true if the entry identified by the given alias is a trusted certificate entry false otherwise.Class KeyStoreSpi, boolean engineIsKeyEntry(String)
Returns true if the entry identified by the given alias is a key entry and false otherwise. @param alias the alias for the keystore entry to be checked @return true if the entry identified by the given alias is a key entry false otherwise.
This MessageDigest class provides applications the functionality of a message digest algorithm such as MD5 or SHA. Message digests are secure one-way hash functions that take arbitrary-sized data and output a fixed-length hash value.Class MessageDigest, byte[] digest(byte[])A MessageDigest object starts out initialized. The data is processed through it using the update methods. At any point reset can be called to reset the digest. Once all the data to be updated has been updated one of the digest methods should be called to complete the hash computation.
The
digestmethod can be called once for a given number of updates. Afterdigesthas been called the MessageDigest object is reset to its initialized state.Implementations are free to implement the Cloneable interface. Client applications can test cloneability by attempting cloning and catching the CloneNotSupportedException:
MessageDigest md = MessageDigest.getInstance("SHA"); try { md.update(toChapter1); MessageDigest tc1 = md.clone(); byte[] toChapter1Digest = tc1.digest(); md.update(toChapter2); ...etc. } catch (CloneNotSupportedException cnse) { throw new DigestException("couldn't make digest of partial content"); }Note that if a given implementation is not cloneable it is still possible to compute intermediate digests by instantiating several instances if the number of digests is known in advance.
Note that this class is abstract and extends from
MessageDigestSpifor historical reasons. Application developers should only take notice of the methods defined in thisMessageDigestclass; all the methods in the superclass are intended for cryptographic service providers who wish to supply their own implementations of message digest algorithms. @author Benjamin Renaud @version 1.63 9871 02/1202/0300 @see DigestInputStream @see DigestOutputStream
Performs a final update on the digest using the specified array of bytes then completes the digest computation. That is this method first calls update(input) passing the input array to the update method then calls digest() @param input the input to be updated before the digest is completed. @return the array of bytes for the resulting hash value.
Class MessageDigest, String getAlgorithm()Returns a string that identifies the algorithm independent of implementation details. The name should be a standard Java Security name (such as "SHA" "MD5" and so on). See Appendix A in the Java Cryptography Architecture API Specification & Reference for information about standard algorithm names. @return the name of the algorithmClass MessageDigest, int getDigestLength()
Returns the length of the digest in bytes or 0 if this operation is not supported by the provider and the implementation is not cloneable. @return the digest length in bytes or 0 if this operation is not supported by the provider and the implementation is not cloneable. @sinceJDK11.2
This class defines the Service Provider Interface (SPI) for theClass MessageDigestSpi, byte[] engineDigest()MessageDigestclass which provides the functionality of a message digest algorithm such as MD5 or SHA. Message digests are secure one-way hash functions that take arbitrary-sized data and output a fixed-length hash value.All the abstract methods in this class must be implemented by a cryptographic service provider who wishes to supply the implementation of a particular message digest algorithm.
Implementations are free to implement the Cloneable interface. @author Benjamin Renaud @version 1.
6 9811 02/1202/0300 @see MessageDigest
Completes the hash computation by performing final operations such as padding. Once engineDigest has been called the engine should be reset (see engineReset}) Resetting is the responsibility of the engine implementor. @return the array of bytes for the resulting hash value.
Class MessageDigestSpi, int engineDigest(byte[], int, int)Completes the hash computation by performing final operations such as padding. OnceClass MessageDigestSpi, int engineGetDigestLength()engineDigesthas been called the engine should be reset (see engineReset}) Resetting is the responsibility of the engine implementor. This method should be abstract but we leave it concrete for binary compatibility. Knowledgeable providers should override this method. @param buf the output buffer in which to store the digest @param offset offset to start from in the output buffer @param len number of bytes within buf allotted for the digest. Both this default implementation and the SUN provider do not return partial digests. The presence of this parameter is solely for consistency in our API's. If the value of this parameter is less than the actual digest length the method will throw a DigestException. This parameter is ignored if its value is greater than or equal to the actual digest length. @return the length of the digest stored in the output buffer. @exception DigestException if an error occurs. @sinceJDK11.2
Returns the digest length in bytes.This concrete method has been added to this previously-defined abstract class. (For backwards compatibility it cannot be abstract.)
The default behavior is to return 0.
This method may be overridden by a provider to return the digest length. @return the digest length in bytes. @since
JDK11.2
This exception is thrown when a particular cryptographic algorithm is requested but is not available in the environment. @version 1.18 9820 00/1202/0302 @author Benjamin Renaud
This exception is thrown when a particular security provider is requested but is not available in the environment. @version 1.14 9816 00/1202/0302 @author Benjamin Renaud
Abstract class for representing access to a system resource. All permissions have a name (whose interpretation depends on the subclass) as well as abstract functions for defining the semantics of the particular Permission subclass.Most Permission objects also include an "actions" list that tells the actions that are permitted for the object. For example for a
java.io.FilePermissionobject the permission name is the pathname of a file (or directory) and the actions list (such as "read write") specifies which actions are granted for the specified file (or for files in the specified directory). The actions list is optional for Permission objects such asjava.lang.RuntimePermissionthat don't need such a list; you either have the named permission (such as "system.exit") or you don't.An important method that must be implemented by each subclass is the
impliesmethod to compare Permissions. Basically "permission p1 implies permission p2" means that if one is granted permission p1 one is naturally granted permission p2. Thus this is not an equality test but rather more of a subset test.Permission objects are similar to String objects in that they are immutable once they have been created. Subclasses should not provide methods that can change the state of a permission once it has been created. @see Permissions @see PermissionCollection @version 1.
32 9835 00/1202/0302 @author Marianne Mueller @author Roland Schemers
Abstract class representing a collection of Permission objects.Class PermissionCollection, void add(Permission)With a PermissionCollection you can:
- add a permission to the collection using the
addmethod.- check to see if a particular permission is implied in the collection using the
impliesmethod.- enumerate all the permissions using the
elementsmethod.
When it is desirable to group together a number of Permission objects of the same type the
newPermissionCollectionmethod on that particular type of Permission object should first be called. The default behavior (from the Permission class) is to simply return null. Subclasses of class Permission override the method if they need to store their permissions in a particular PermissionCollection object in order to provide the correct semantics when thePermissionCollection.impliesmethod is called. If a non-null value is returned that PermissionCollection must be used. If null is returned then the caller ofnewPermissionCollectionis free to store permissions of the given type in any PermissionCollection they choose (one that uses a Hashtable one that uses a Vector etc).The PermissionCollection returned by the
Permission.newPermissionCollectionmethod is a homogeneous collection which stores only Permission objects for a given Permission type. A PermissionCollection may also be heterogenous. For example Permissions is a PermissionCollection subclass that represents a collection of PermissionCollections. That is its members are each a homogeneous PermissionCollection. For example a Permissions object might have a FilePermissionCollection for all the FilePermission objects a SocketPermissionCollection for all the SocketPermission objects and so on. Itsaddmethod adds a permission to the appropriate collection.Whenever a permission is added to a heterogeneous PermissionCollection such as Permissions and the PermissionCollection doesn't yet contain a PermissionCollection of the specified permission's type the PermissionCollection should call the
newPermissionCollectionmethod on the permission's class to see if it requires a special PermissionCollection. IfnewPermissionCollectionreturns null the PermissionCollection is free to store the permission in any type of PermissionCollection it desires (one using a Hastable one using a Vector etc.). For example the Permissions object uses a default PermissionCollection implementation that stores the permission objects in a Hashtable. @see Permission @see Permissions @version 1.23 9826 00/1202/0302 @author Roland Schemers
Adds a permission object to the current collection of permission objects. @param permission the Permission object to add. @exception SecurityException - if this PermissionCollection object has been marked readonlyClass PermissionCollection, boolean isReadOnly()
Returns true if this PermissionCollection object is marked as readonly. If it is readonly no new Permission objects can be added to it usingClass PermissionCollection, void setReadOnly().addPermissionaddBy default the object is not readonly. It can be set to readonly by a call to
setReadOnly. @return true if this PermissionCollection object is marked as readonly false otherwise.
Marks this PermissionCollection object as "readonly". After a PermissionCollection object is marked as readonly no new Permission objects can be added to it using addPermissionadd.
This class represents a heterogeneous collection of Permissions. That is it contains different types of Permission objects organized into PermissionCollections. For example if anyClass Permissions, void add(Permission)java.io.FilePermissionobjects are added to an instance of this class they are all stored in a single PermissionCollection. It is the PermissionCollection returned by a call to thenewPermissionCollectionmethod in the FilePermission class. Similarly anyjava.lang.RuntimePermissionobjects are stored in the PermissionCollection returned by a call to thenewPermissionCollectionmethod in the RuntimePermission class. Thus this class represents a collection of PermissionCollections.When the
addmethod is called to add a Permission the Permission is stored in the appropriate PermissionCollection. If no such collection exists yet the Permission object's class is determined and thenewPermissionCollectionmethod is called on that class to create the PermissionCollection and add it to the Permissions object. IfnewPermissionCollectionreturns null then a default PermissionCollection that uses a hashtable will be created and used. Each hashtable entry stores a Permission object as both the key and the value. @see Permission @see PermissionCollection @see AllPermission @version 1.39 9846 00/1202/0302 @author Marianne Mueller @author Roland Schemers @serial exclude
Adds a permission object to the PermissionCollection for the class the permission belongs to. For example if permission is a FilePermission it is added to the FilePermissionCollection stored in this Permissions object. This method creates a new PermissionCollection object (and adds the permission to it) if an appropriate collection does not yet exist.@param permission the Permission object to add. @exception SecurityException if this Permissions object is marked as readonly. @see PermissionCollection#isReadOnly()
This is an abstract class for representing the system security policy for a Java application environment (specifying which permissions are available for code from various sources). That is the security policy is represented by a Policy subclass providing an implementation of the abstract methods in this Policy class.Class Policy, Policy getPolicy()There is only one Policy object in effect at any given time.
ItThe Policy object is typically consulted by
aobjectsProtectionDomainsuch as the byte[ int int CodeSource) SecureClassLoader} when a loader needs to determine the permissions to assign to a particular protection domain.initializes its set ofThe SecureClassLoader executes codepermissionssuch as the following to ask the currently installed Policy object to populate a PermissionCollection object:policy = Policy.getPolicy(); PermissionCollection perms = policy.getPermissions(MyCodeSource)The SecureClassLoader object passes in a CodeSource object which encapsulates the codebase (URL) and public key certificates of the classes being loaded. The Policy object consults its policy specification and returns an appropriate Permissions object enumerating the permissions allowed for code from the specified code source.
The source location for the policy information utilized by the Policy object is up to the Policy implementation. The policy configuration may be stored for example as a flat ASCII file as a serialized binary file of the Policy class or as a database.
The currently-installed Policy object can be obtained by calling thegetPolicymethod and it can be changed by a call to thesetPolicymethod (by code with permission to reset the Policy).The
refreshmethod causes the policy object to refresh/reload its current configuration. This is implementation-dependent. For example if the policy object stores its policy in configuration files callingrefreshwill cause it to re-read the configuration policy files.When a protection domain needs to initialize its set of permissions it executes code such as the following to ask the currently installed Policy object to populate a PermissionCollection object with the appropriate permissions:The refreshed policy= Policy.getPolicy(); PermissionCollection permsmay=notpolicy.getPermissions(MyCodeSource)have anTheeffectprotection domain passes inon classes loaded from aCodeSource object which encapsulates its codebase (URL) and public keygivenattributesCodeSource.TheThisPolicy object evaluatesis dependent on theglobal policy and returns an appropriateProtectionDomainPermissions object specifyingcaching strategy of thepermissions allowed forClassLoader.code fromFor example thespecifiedSecureClassLoadercodecachessourceprotection domains.The default Policy implementation can be changed by setting the value of the "policy.provider" security property (in the Java security properties file) to the fully qualified name of the desired Policy implementation class. The Java security properties file is located in the file named <JAVA_HOME>/lib/security/java.security where <JAVA_HOME> refers to the directory where the
JDKSDK was installed. @author Roland Schemers @version 1.59680902/2402/9800 @see java.security.CodeSource @see java.security.PermissionCollection @see java.security.SecureClassLoader
Returns the installed Policy object. This value should not be cached as it may be changed by a call toClass Policy, void setPolicy(Policy)setPolicy. This method first callsSecurityManager.checkPermissionwith aSecurityPermission("getPolicy")permission to ensure it's ok to get the Policy object.. @return the installed Policy. @throws SecurityException if a security manager exists and itscheckPermissionmethod doesn't allow getting the Policy object. @see SecurityManager#checkPermission(SecurityPermission) @see #setPolicy(java.security.Policy)
Sets the system-wide Policy object. This method first callsSecurityManager.checkPermissionwith aSecurityPermission("setPolicy")permission to ensure it's ok to set the Policy. @param policy the new system Policy object. @throws SecurityException if a security manager exists and itscheckPermissionmethod doesn't allow setting the Policy. @see SecurityManager#checkPermission(SecurityPermission) @see #getPolicy()
This interface represents the abstract notion of a principal which can be used to represent any entity such as an individual a corporation and a login id. @see java.security.cert.X509Certificate @version 1.17 9819 00/1202/0302 @author Li Gong
A private key. This interface contains no methods or constants. It merely serves to group (and provide type safety for) all private key interfaces. Note: The specialized private key interfaces extend this interface. See for example the DSAPrivateKey interface in
java.security.interfaces. @see Key @see PublicKey @see Certificate @see Signature#initVerify @see java.security.interfaces.DSAPrivateKey @see java.security.interfaces.RSAPrivateKey @see java.security.interfaces.RSAPrivateCrtKey @version 1.23 9825 00/1202/0302 @author Benjamin Renaud @author Josh Bloch
Constructs a new PrivilegedActionExceptionClass PrivilegedActionException, String toString()""wrapping"" the specific Exception. @param exception The exception thrown
Returns ashort description of this throwable object. If this Throwable object was created with an error messagestringthen the result is the concatenation of three strings: The name of the actual class ofdescribing thisobjectexception":including" (a colon andaspace) The result of the #getMessage method for this object If this Throwable object was created with no error message string then the namedescription of theactual class of thisexceptionobjectitis returnedwraps. @return a string representation of thisThrowablePrivilegedActionException.
This ProtectionDomain class encapulates the characteristics of a domain which encloses a set of classes whose instances are granted the same set of permissions.
In addition to a set of permissions a domain is comprised of a CodeSource which is a set of PublicKeys together with a codebase (in the form of a URL). Thus classes signed by the same keys and from the same URL are placed in the same domain. Classes that have the same permissions but are from different code sources belong to different domains.
A class belongs to one and only one ProtectionDomain. @version 1.
24 0526 02/1102/9800 @author Li Gong @author Roland Schemers
This class represents a "provider" for the Java Security API where a provider implements some or all parts of Java Security including:Class Provider, void clear()
- Algorithms (such as DSA RSA MD5 or SHA-1).
- Key generation conversion and management facilities (such as for algorithm-specific keys).
Each provider has a name and a version number and is configured in each runtime it is installed in.
See The Provider Class in the "Java Cryptography Architecture API Specification & Reference" for information about how
providersa particular type of provider the cryptographic service providerworkworks andhowis installed. However please note that a provider can be used toinstallimplement any security service in Java that uses a pluggable architecture with a choice of implementations that fitthemunderneath. @version 1.41489802/1202/0300 @author Benjamin Renaud
Clears this provider so that it no longer contains the properties used to look up facilities implemented by the provider.Class Provider, Set entrySet()First if there is a security manager its
checkSecurityAccessmethod is called with the string"clearProviderProperties."+name(wherenameis the provider name) to see if it's ok to clear this provider. If the default implementation ofcheckSecurityAccessis used (that is that method is not overriden) then this results in a call to the security manager'scheckPermissionmethod with aSecurityPermission("clearProviderProperties."+name)permission. @throws SecurityException if a security manager exists and its{@link java.lang.SecurityManager#checkSecurityAccess}method denies access to clear this provider @sinceJDK11.2
Returns an unmodifiable Set view of the property entries contained in this Provider. @see java.util.Map.Entry @sinceClass Provider, Set keySet()JDK11.2
Returns an unmodifiable Set view of the property keys contained in this provider. @sinceClass Provider, void load(InputStream)JDK11.2
Reads a property list (key and element pairs) from the input stream. @paramClass Provider, Object put(Object, Object)ininStream the input stream. @exception IOException if an error occurred when reading from the input stream. @see java.util.Properties#load
Sets theClass Provider, void putAll(Map)keyproperty to have the specifiedvalue.First if there is a security manager its
checkSecurityAccessmethod is called with the string"putProviderProperty."+namewherenameis the provider name to see if it's ok to set this provider's property values. If the default implementation ofcheckSecurityAccessis used (that is that method is not overriden) then this results in a call to the security manager'scheckPermissionmethod with aSecurityPermission("putProviderProperty."+name)permission. @param key the property key. @param value the property value. @return the previous value of the specified property (key) or null if it did not have one. @throws SecurityException if a security manager exists and its{@link java.lang.SecurityManager#checkSecurityAccess}method denies access to set property values. @sinceJDK11.2
Copies all of the mappings from the specified Map to this provider. These mappings will replace any properties that this provider had for any of the keys currently in the specified Map. @sinceClass Provider, Object remove(Object)JDK11.2
Removes thekeyproperty (and its correspondingvalue).First if there is a security manager its
checkSecurityAccessmethod is called with the string""removeProviderProperty."+namewherenameis the provider name to see if it's ok to remove this provider's properties. If the default implementation ofcheckSecurityAccessis used (that is that method is not overriden) then this results in a call to the security manager'scheckPermissionmethod with aSecurityPermission("removeProviderProperty."+name)permission. @param key the key for the property to be removed. @return the value to which the key had been mapped or null if the key did not have a mapping. @throws SecurityException if a security manager exists and its{@link java.lang.SecurityManager#checkSecurityAccess}method denies access to remove this provider's properties. @sinceJDK11.2
A runtime exception for Provider exceptions (such as misconfiguration errors) which may be subclassed by Providers to throw specialized provider-specific runtime errors. @version 1.8 9810 00/1202/0302 @author Benjamin Renaud
A public key. This interface contains no methods or constants. It merely serves to group (and provide type safety for) all public key interfaces. Note: The specialized public key interfaces extend this interface. See for example the DSAPublicKey interface in
java.security.interfaces. @see Key @see PrivateKey @see Certificate @see Signature#initVerify @see java.security.interfaces.DSAPublicKey @see java.security.interfaces.RSAPublicKey @version 1.26 9828 00/1202/0302
This class extends ClassLoader with additional support for defining classes with an associated code source and permissions which are retrieved by the system policy by default. @version 1.Class SecureClassLoader, constructor SecureClassLoader(ClassLoader)71 0373 02/0802/00 @author Li Gong @author Roland Schemers
Creates a new SecureClassLoader using the specified parent class loader for delegation.Class SecureClassLoader, Class defineClass(String, byte[], int, int, CodeSource)If there is a security manager this method first calls the security manager's
checkCreateClassLoadermethod to ensure creation of a class loader is allowed.@param parent the parent ClassLoader @exception SecurityException if a security manager exists and its
checkCreateClassLoadermethod doesn't allow creation of a class loader. @see SecurityManager#checkCreateClassLoader
Converts an array of bytes into an instance of class Class with an optional CodeSource. Before the class can be used it must be resolved.Class SecureClassLoader, PermissionCollection getPermissions(CodeSource)If a non-null CodeSource is supplied and a Policy provider is installed Policy.getPermissions() is invoked in order to associate a ProtectionDomain with the class being defined.
@param name the name of the class @param b the class bytes @param off the start offset of the class bytes @param len the length of the class bytes @param cs the associated CodeSource or null if none @return the
Classobject created from the data and optional CodeSource.
Returns the permissions for the givencodesourceCodeSource object. The default implementation of this method invokes the java.security.Policy.getPermissions method to get the permissions granted by the policy to the specifiedcodesourceCodeSource.This method is invoked by the defineClass method
thatwhich takes a CodeSource as an argument when it is constructing the ProtectionDomain for the class being defined.The constructed ProtectionDomain is cached by the SecureClassLoader. The contents of the cache persist for the lifetime of the SecureClassLoader instance. This persistence inhibits Policy.refresh() from influencing the protection domains already in the cache for a given CodeSource.
@param codesource the codesource. @return the permissions granted to the codesource.
This class provides a cryptographically strong pseudo-random number generator (PRNG).
Like other algorithm-based classes in Java Security SecureRandom provides implementation-independent algorithms whereby a caller (application code) requests a particular PRNG algorithm and is handed back a SecureRandom object for that algorithm. It is also possible if desired to request a particular algorithm from a particular provider. See the
getInstancemethods.Thus there are two ways to request a SecureRandom object: by specifying either just an algorithm name or both an algorithm name and a package provider.
- If just an algorithm name is specified as in:
SecureRandom random = SecureRandom.getInstance("SHA1PRNG");the system will determine if there is an implementation of the