Expand Minimize
This topic has not yet been rated - Rate this topic

CryptXmlDllDigestData function pointer

The CryptXmlDllDigestData function puts data into the digest.

The CryptXmlDllDigestData function is exposed through the exported CryptXmlDllGetInterface function.

Syntax


typedef HRESULT ( WINAPI *CryptXmlDllDigestData)(
  CRYPT_XML_DIGEST hDigest,
  BYTE *pbData,
  ULONG cbDigest
);

Parameters

hDigest

The handle of the hash object used to put data into the digest. This handle is obtained by calling the CryptXmlDllCreateDigest function.

pbData

A pointer to a block of data to be processed.

cbDigest

The size, in bytes, of the block of data pointed to by the pbData parameter.

Return value

If the function succeeds, the function returns zero.

If the function fails, it returns an HRESULT value that indicates the error.

Requirements

Minimum supported client

Windows 7 [desktop apps only]

Minimum supported server

Windows Server 2008 R2 [desktop apps only]

Header

Cryptxml.h

 

 

Send comments about this topic to Microsoft

Build date: 10/26/2012

Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.