Class Signer
java.lang.Object
java.security.Identity
java.security.Signer
- All Implemented Interfaces:
Serializable, Principal
Deprecated, for removal: This API element is subject to removal in a future version.
This class is used to represent an Identity that can also digitally
sign data.
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
ConstructorsModifierConstructorDescriptionprotectedSigner()Deprecated, for removal: This API element is subject to removal in a future version.Creates aSigner.Deprecated, for removal: This API element is subject to removal in a future version.Creates aSignerwith the specified identity name.Signer(String name, IdentityScope scope) Deprecated, for removal: This API element is subject to removal in a future version.Creates aSignerwith the specified identity name and scope. -
Method Summary
Modifier and TypeMethodDescriptionDeprecated, for removal: This API element is subject to removal in a future version.Returns this signer's private key.final voidsetKeyPair(KeyPair pair) Deprecated, for removal: This API element is subject to removal in a future version.Sets the key pair (public key and private key) for thisSigner.toString()Deprecated, for removal: This API element is subject to removal in a future version.Returns a string of information about theSigner.Methods inherited from class Identity
addCertificate, certificates, equals, getInfo, getName, getPublicKey, getScope, hashCode, identityEquals, removeCertificate, setInfo, setPublicKey, toStringModifier and TypeMethodDescriptionvoidaddCertificate(Certificate certificate) Deprecated, for removal: This API element is subject to removal in a future version.Adds a certificate for thisIdentity.Deprecated, for removal: This API element is subject to removal in a future version.Returns a copy of all the certificates for thisIdentity.final booleanDeprecated, for removal: This API element is subject to removal in a future version.Tests for equality between the specified object and thisIdentity.getInfo()Deprecated, for removal: This API element is subject to removal in a future version.Returns general information previously specified for thisIdentity.final StringgetName()Deprecated, for removal: This API element is subject to removal in a future version.Returns this identity's name.Deprecated, for removal: This API element is subject to removal in a future version.Returns this identity's public key.final IdentityScopegetScope()Deprecated, for removal: This API element is subject to removal in a future version.Returns this identity's scope.inthashCode()Deprecated, for removal: This API element is subject to removal in a future version.Returns the hashcode for thisIdentity.protected booleanidentityEquals(Identity identity) Deprecated, for removal: This API element is subject to removal in a future version.Tests for equality between the specifiedIdentityand thisIdentity.voidremoveCertificate(Certificate certificate) Deprecated, for removal: This API element is subject to removal in a future version.Removes a certificate from thisIdentity.voidDeprecated, for removal: This API element is subject to removal in a future version.Specifies a general information string for thisIdentity.voidsetPublicKey(PublicKey key) Deprecated, for removal: This API element is subject to removal in a future version.Sets this identity's public key.toString(boolean detailed) Deprecated, for removal: This API element is subject to removal in a future version.Returns a string representation of thisIdentity, with optionally more details than that provided by thetoStringmethod without any arguments.Methods inherited from class Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitModifier and TypeMethodDescriptionprotected Objectclone()Creates and returns a copy of this object.protected voidfinalize()Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class<?> getClass()Returns the runtime class of thisObject.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.final voidwait()Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final voidwait(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final voidwait(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Constructor Details
-
Signer
protected Signer()Deprecated, for removal: This API element is subject to removal in a future version.Creates aSigner. This constructor should only be used for serialization. -
Signer
Deprecated, for removal: This API element is subject to removal in a future version.Creates aSignerwith the specified identity name.- Parameters:
name- the identity name.
-
Signer
Deprecated, for removal: This API element is subject to removal in a future version.Creates aSignerwith the specified identity name and scope.- 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
Deprecated, for removal: This API element is subject to removal in a future version.Returns this signer's private key.- Returns:
- this signer's private key, or
nullif the private key has not yet been set.
-
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 thisSigner.- 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.
-
toString
-
java.security.KeyStore, thejava.security.certpackage, andjava.security.Principal.