Uses of Interface
javax.xml.crypto.dsig.Reference
-
Packages that use Reference Package Description javax.xml.crypto.dsig Classes for generating and validating XML digital signatures. -
-
Uses of Reference in javax.xml.crypto.dsig
Methods in javax.xml.crypto.dsig that return Reference Modifier and Type Method Description abstract 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.Methods in javax.xml.crypto.dsig that return types with arguments of type Reference Modifier and Type Method Description List<Reference>
Manifest. getReferences()
List<Reference>
SignedInfo. getReferences()
Returns anunmodifiable list
of one or moreReference
s.Method parameters in javax.xml.crypto.dsig with type arguments of type Reference Modifier and Type Method Description abstract 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.
-