- java.lang.Object
-
- java.security.Identity
-
- java.security.Signer
-
- All Implemented Interfaces:
- Serializable, Principal
Deprecated.This class is no longer used. Its functionality has been replaced byjava.security.KeyStore
, thejava.security.cert
package, andjava.security.Principal
.
@Deprecated public abstract class Signer extends Identity
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.
- See Also:
Identity
, Serialized Form
-
-
Constructor Summary
Constructors Modifier Constructor and Description protected
Signer()
Deprecated.Creates a signer.Signer(String name)
Deprecated.Creates a signer with the specified identity name.Signer(String name, IdentityScope scope)
Deprecated.Creates a signer with the specified identity name and scope.
-
Method Summary
Methods Modifier and Type Method and Description PrivateKey
getPrivateKey()
Deprecated.Returns this signer's private key.void
setKeyPair(KeyPair pair)
Deprecated.Sets the key pair (public key and private key) for this signer.String
toString()
Deprecated.Returns a string of information about the signer.-
Methods inherited from class java.security.Identity
addCertificate, certificates, equals, getInfo, getName, getPublicKey, getScope, hashCode, identityEquals, removeCertificate, setInfo, setPublicKey, toString
-
-
-
-
Constructor Detail
-
Signer
protected Signer()
Deprecated.Creates a signer. This constructor should only be used for serialization.
-
Signer
public Signer(String name)
Deprecated.Creates a signer with the specified identity name.- Parameters:
name
- the identity name.
-
Signer
public Signer(String name, IdentityScope scope) throws KeyManagementException
Deprecated.Creates a signer with 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 Detail
-
getPrivateKey
public PrivateKey getPrivateKey()
Deprecated.Returns this signer's private key.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:
SecurityManager.checkSecurityAccess(java.lang.String)
-
setKeyPair
public final void setKeyPair(KeyPair pair) throws InvalidParameterException, KeyException
Deprecated.Sets the key pair (public key and private key) for this signer.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:
SecurityManager.checkSecurityAccess(java.lang.String)
-
-
Nederlandse vertaling
U hebt gevraagd om deze site in het Nederlands te bezoeken. Voor nu wordt alleen de interface vertaald, maar nog niet alle inhoud.Als je me wilt helpen met vertalingen, is je bijdrage welkom. Het enige dat u hoeft te doen, is u op de site registreren en mij een bericht sturen waarin u wordt gevraagd om u toe te voegen aan de groep vertalers, zodat u de gewenste pagina's kunt vertalen. Een link onderaan elke vertaalde pagina geeft aan dat u de vertaler bent en heeft een link naar uw profiel.
Bij voorbaat dank.
Document heeft de 11/06/2005 gemaakt, de laatste keer de 04/03/2020 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/java-api-rf-java/security/signer.html
De infobrol is een persoonlijke site waarvan de inhoud uitsluitend mijn verantwoordelijkheid is. De tekst is beschikbaar onder CreativeCommons-licentie (BY-NC-SA). Meer info op de gebruiksvoorwaarden en de auteur.
Referenties
Deze verwijzingen en links verwijzen naar documenten die geraadpleegd zijn tijdens het schrijven van deze pagina, of die aanvullende informatie kunnen geven, maar de auteurs van deze bronnen kunnen niet verantwoordelijk worden gehouden voor de inhoud van deze pagina.
De auteur Deze site is als enige verantwoordelijk voor de manier waarop de verschillende concepten, en de vrijheden die met de referentiewerken worden genomen, hier worden gepresenteerd. Vergeet niet dat u meerdere broninformatie moet doorgeven om het risico op fouten te verkleinen.