-
- All Superinterfaces:
- XMLStructure
- Enclosing interface:
- XMLSignature
public static interface XMLSignature.SignatureValue extends XMLStructure
A representation of the XMLSignatureValue
element as defined in the W3C Recommendation for XML-Signature Syntax and Processing. The XML Schema Definition is defined as:<element name="SignatureValue" type="ds:SignatureValueType"/> <complexType name="SignatureValueType"> <simpleContent> <extension base="base64Binary"> <attribute name="Id" type="ID" use="optional"/> </extension> </simpleContent> </complexType>
-
-
Method Summary
Methods Modifier and Type Method and Description String
getId()
Returns the optionalId
attribute of thisSignatureValue
, which permits this element to be referenced from elsewhere.byte[]
getValue()
Returns the signature value of thisSignatureValue
.boolean
validate(XMLValidateContext validateContext)
Validates the signature value.-
Methods inherited from interface javax.xml.crypto.XMLStructure
isFeatureSupported
-
-
-
-
Method Detail
-
getId
String getId()
Returns the optionalId
attribute of thisSignatureValue
, which permits this element to be referenced from elsewhere.- Returns:
- the
Id
attribute (may benull
if not specified)
-
getValue
byte[] getValue()
Returns the signature value of thisSignatureValue
.- Returns:
- the signature value (may be
null
if theXMLSignature
has not been signed yet). Each invocation of this method returns a new clone of the array to prevent subsequent modification.
-
validate
boolean validate(XMLValidateContext validateContext) throws XMLSignatureException
Validates the signature value. This method performs a cryptographic validation of the signature calculated over theSignedInfo
of theXMLSignature
.This method only validates the signature the first time it is invoked. On subsequent invocations, it returns a cached result.
- Parameters:
validateContext
- the validating context- Returns:
true
if the signature was validated successfully;false
otherwise- Throws:
NullPointerException
- ifvalidateContext
isnull
XMLSignatureException
- if an unexpected exception occurs while validating the signature
-
-
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
21/11/2024 22:01:34 Cette version de la page est en cache (à la date du 21/11/2024 22:01:34) 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 11/06/2005, dernière modification le 04/03/2020
Source du document imprimé : https://www.gaudry.be/java-api-rf-javax/xml/crypto/dsig/XMLSignature.SignatureValue.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.