:: com :: sun :: star :: xml :: crypto ::

unpublished interface XDigestContext
Usage Restrictions
not published
Description
This interface allows to generate the digest.

The algorithm to generate the digest is specified on object creation.

Since
OOo 3.4
See also
XDigestContextSupplier

Methods' Summary
updateDigest update the digest with the given data.  
finalizeDigestAndDispose finalizes digest and disposes context.  
Methods' Details
updateDigest
void
updateDigest( [in] sequence< byte >  aData )
raises( ::com::sun::star::lang::DisposedException );

Description
update the digest with the given data.
Parameter aData
data that should be used to update the digest
finalizeDigestAndDispose
sequence< byte >
finalizeDigestAndDispose()
raises( ::com::sun::star::lang::DisposedException );

Description
finalizes digest and disposes context.
Top of Page