- java.lang.Object
-
- javax.security.auth.x500.X500PrivateCredential
-
- All Implemented Interfaces:
- Destroyable
public final class X500PrivateCredential extends Object implements Destroyable
This class represents an
X500PrivateCredential
. It associates an X.509 certificate, corresponding private key and the KeyStore alias used to reference that exact key pair in the KeyStore. This enables looking up the private credentials for an X.500 principal in a subject.
-
-
Constructor Summary
Constructors Constructor and Description X500PrivateCredential(X509Certificate cert, PrivateKey key)
Creates an X500PrivateCredential that associates an X.509 certificate, a private key and the KeyStore alias.X500PrivateCredential(X509Certificate cert, PrivateKey key, String alias)
Creates an X500PrivateCredential that associates an X.509 certificate, a private key and the KeyStore alias.
-
Method Summary
Methods Modifier and Type Method and Description void
destroy()
Clears the references to the X.509 certificate, private key and the KeyStore alias in this object.String
getAlias()
Returns the KeyStore alias.X509Certificate
getCertificate()
Returns the X.509 certificate.PrivateKey
getPrivateKey()
Returns the PrivateKey.boolean
isDestroyed()
Determines if the references to the X.509 certificate and private key in this object have been cleared.
-
-
-
Constructor Detail
-
X500PrivateCredential
public X500PrivateCredential(X509Certificate cert, PrivateKey key)
Creates an X500PrivateCredential that associates an X.509 certificate, a private key and the KeyStore alias.- Parameters:
cert
- X509Certificatekey
- PrivateKey for the certificate- Throws:
IllegalArgumentException
- if eithercert
orkey
is null
-
X500PrivateCredential
public X500PrivateCredential(X509Certificate cert, PrivateKey key, String alias)
Creates an X500PrivateCredential that associates an X.509 certificate, a private key and the KeyStore alias.- Parameters:
cert
- X509Certificatekey
- PrivateKey for the certificatealias
- KeyStore alias- Throws:
IllegalArgumentException
- if eithercert
,key
oralias
is null
-
-
Method Detail
-
getCertificate
public X509Certificate getCertificate()
Returns the X.509 certificate.- Returns:
- the X509Certificate
-
getPrivateKey
public PrivateKey getPrivateKey()
Returns the PrivateKey.- Returns:
- the PrivateKey
-
getAlias
public String getAlias()
Returns the KeyStore alias.- Returns:
- the KeyStore alias
-
destroy
public void destroy()
Clears the references to the X.509 certificate, private key and the KeyStore alias in this object.- Specified by:
destroy
in interfaceDestroyable
-
isDestroyed
public boolean isDestroyed()
Determines if the references to the X.509 certificate and private key in this object have been cleared.- Specified by:
isDestroyed
in interfaceDestroyable
- Returns:
- true if X509Certificate and the PrivateKey are null
-
-
Traduction non disponible
Les API Java ne sont pas encore traduites en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.
Version en cache
22/12/2024 10:11:26 Cette version de la page est en cache (à la date du 22/12/2024 10:11:26) afin d'accélérer le traitement. Vous pouvez activer le mode utilisateur dans le menu en haut pour afficher la dernère version de la page.Document créé le 06/12/2006, dernière modification le 04/03/2020
Source du document imprimé : https://www.gaudry.be/java-api-rf-javax/security/auth/x500/X500PrivateCredential.html
L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.
Références
Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.