Share via


CryptMsgDuplicate (Windows CE 5.0)

Send Feedback

This function duplicates a cryptographic message handle by incrementing its reference count.

HCRYPTMSG WINAPI CryptMsgDuplicate(  HCRYPTMSG hCryptMsg);

Parameters

  • hCryptMsg
    [in] Handle of the cryptographic message to be duplicated. Duplication is done by incrementing the reference count of the message. A copy of the message is not made.

Return Values

The returned handle is the same as the handle input. A copy of the message is not created. When you have finished using the duplicated message handle, decrease the reference count by calling the CryptMsgClose function.

Remarks

CryptMsgDuplicate is used to increase the reference count on an HCRYPTMSG handle so that multiple calls to CryptMsgClose are required to actually release the handle.

Requirements

OS Versions: Windows CE 5.0 and later.
Header: Wincrypt.h.
Link Library: Coredll.lib.

See Also

Cryptography Functions | CryptMsgGetParam | CryptMsgOpenToEncode | CryptMsgOpenToDecode

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.