Class Signer
- All Implemented Interfaces:
-
Serializable
,Principal
@Deprecated(since="1.2", forRemoval=true) public abstract class Signer extends Identity
The management of a signer's private keys is an important and sensitive issue that should be handled by subclasses as appropriate to their intended use.
- Since:
- 1.1
- See Also:
Constructor Summary
Modifier | Constructor | Description |
---|---|---|
protected |
Deprecated, for removal: This API element is subject to removal in a future version. Creates a signer. |
|
Deprecated, for removal: This API element is subject to removal in a future version. Creates a signer with the specified identity name. |
||
Deprecated, for removal: This API element is subject to removal in a future version. Creates a signer with the specified identity name and scope. |
Method Summary
Modifier and Type | Method | Description |
---|---|---|
PrivateKey |
getPrivateKey() |
Deprecated, for removal: This API element is subject to removal in a future version. Returns this signer's private key. |
final void |
setKeyPair |
Deprecated, for removal: This API element is subject to removal in a future version. Sets the key pair (public key and private key) for this signer. |
String |
toString() |
Deprecated, for removal: This API element is subject to removal in a future version. Returns a string of information about the signer. |
Methods declared in class java.security.Identity
addCertificate, certificates, equals, getInfo, getName, getPublicKey, getScope, hashCode, identityEquals, removeCertificate, setInfo, setPublicKey, toString
Constructor Details
Signer
protected Signer()
Signer
public Signer(String name)
- Parameters:
-
name
- the identity name.
Signer
public Signer(String name, IdentityScope scope) throws KeyManagementException
- Parameters:
-
name
- the identity name. -
scope
- the scope of the identity. - Throws:
-
KeyManagementException
- if there is already an identity with the same name in the scope.
Method Details
getPrivateKey
public PrivateKey getPrivateKey()
First, if there is a security manager, its checkSecurityAccess
method is called with "getSignerPrivateKey"
as its argument to see if it's ok to return the private key.
- Returns:
- this signer's private key, or null if the private key has not yet been set.
- Throws:
-
SecurityException
- if a security manager exists and itscheckSecurityAccess
method doesn't allow returning the private key. - See Also:
setKeyPair
public final void setKeyPair(KeyPair pair) throws InvalidParameterException, KeyException
First, if there is a security manager, its checkSecurityAccess
method is called with "setSignerKeyPair"
as its argument to see if it's ok to set the key pair.
- Parameters:
-
pair
- an initialized key pair. - Throws:
-
InvalidParameterException
- if the key pair is not properly initialized. -
KeyException
- if the key pair cannot be set for any other reason. -
SecurityException
- if a security manager exists and itscheckSecurityAccess
method doesn't allow setting the key pair. - See Also:
toString
public String toString()
© 1993, 2021, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/security/Signer.html
java.security.KeyStore
, thejava.security.cert
package, andjava.security.Principal
.