Uses of Interface
javax.xml.crypto.dsig.Reference
Package
Description
Classes for generating and validating XML digital
signatures.
-
Uses of Reference in javax.xml.crypto.dsig
Modifier and TypeMethodDescriptionabstract Reference
XMLSignatureFactory.newReference(String uri, DigestMethod dm)
Creates aReference
with the specified URI and digest method.abstract Reference
XMLSignatureFactory.newReference(String uri, DigestMethod dm, List<? extends Transform> transforms, String type, String id)
Creates aReference
with the specified parameters.abstract Reference
XMLSignatureFactory.newReference(String uri, DigestMethod dm, List<? extends Transform> transforms, String type, String id, byte[] digestValue)
Creates aReference
with the specified parameters and pre-calculated digest value.abstract Reference
XMLSignatureFactory.newReference(String uri, DigestMethod dm, List<? extends Transform> appliedTransforms, Data result, List<? extends Transform> transforms, String type, String id)
Creates aReference
with the specified parameters.Modifier and TypeMethodDescriptionManifest.getReferences()
SignedInfo.getReferences()
Returns anunmodifiable list
of one or moreReference
s.Modifier and TypeMethodDescriptionabstract Manifest
XMLSignatureFactory.newManifest(List<? extends Reference> references)
Creates aManifest
containing the specified list ofReference
s.abstract Manifest
XMLSignatureFactory.newManifest(List<? extends Reference> references, String id)
Creates aManifest
containing the specified list ofReference
s and optional id.abstract SignedInfo
XMLSignatureFactory.newSignedInfo(CanonicalizationMethod cm, SignatureMethod sm, List<? extends Reference> references)
Creates aSignedInfo
with the specified canonicalization and signature methods, and list of one or more references.abstract SignedInfo
XMLSignatureFactory.newSignedInfo(CanonicalizationMethod cm, SignatureMethod sm, List<? extends Reference> references, String id)
Creates aSignedInfo
with the specified parameters.