Package | flash.security |
Interface | public interface IURIDereferencer |
The IURIDereferencer implementation is responsible for resolving the URIs specified in the SignedInfo elements of an XML signature file and returning the referenced data in an object, such as a ByteArray, that implements the IDataInput interface.
The interface has one method: dereference()
.
A typical implementation might also require a method for passing
the XML signature object containing the URIs to be resolved to
the dereferencer.
The IURIDereferencer interface is used with the XMLSignatureValidator class.
See also
Method | Defined By | ||
---|---|---|---|
Resolves and dereferences the specified URI.
| IURIDereferencer |
![]() | () | method |
public function dereference(uri:String):IDataInput
Resolves and dereferences the specified URI.
Parameters
uri:String — The URI to dereference.
|
IDataInput — The data referenced by the URI.
|