CryptDuplicateKey (Compact 2013)

3/28/2014

This function makes an exact copy of a key and the state the key is in. Some keys have an associated state, for example, an initialization vector and/or a salt value.

Syntax

BOOL WINAPI CryptDuplicateHash( 
  HCRYPTKEY hKey,
  DWORD* pdwReserved, 
  DWORD dwFlags, 
  HCRYPTKEY* phKey
);

Parameters

  • hKey
    [in] HCRYPTKEY handle to the key to be duplicated.
  • pdwReserved
    [in] Reserved; set to NULL.
  • dwFlags
    [in] Reserved; set to 0 (zero).
  • phKey
    [out] Pointer to the HCRYPTKEY handle to the duplicated key.

Return Value

TRUE indicates success. FALSE indicates failure. To get extended error information, call the GetLastError function.

The following table describes the common values for the GetLastError function. The error values prefaced by NTE are generated by the particular cryptographic service provider (CSP) you are using.

Value

Description

ERROR_CALL_NOT_IMPLEMENTED

Because this is a new function, existing CSPs may not implement it. This error is returned if the CSP does not support this function.

ERROR_INVALID_PARAMETER

One of the parameters contains an invalid value. This is most often an illegal pointer.

NTE_BAD_KEY

The handle to the original key is not valid.

Remarks

This function makes copies of keys and the exact state of the key. For example, a caller may want to encrypt two separate messages with the same key, but with different salt values. The key could be generated, a duplicate would be made with the CryptDuplicateKey function, and then the appropriate salt value would be set on each key with the CryptSetKeyParam function.

The CryptDestroyKey function must be called to destroy any keys that are created with the CryptDuplicateKey function. Destroying the original key does not cause the duplicate key to be destroyed. Once a duplicate key is made, it is separate from the original key. There is no shared state between the two keys.

Example Code

Important

For readability, the following code example does not contain security checking or error handling. Do not use the following code in a production environment.

HCRYPTPROV hProv = 0;
HCRYPTKEY hOriginalKey = 0;
HCRYPTKEY hDuplicateKey = 0;
DWORD dwErr;
// Generate a key.
if (!CryptGenKey(hProv, CALG_RC4, 0, &hOriginalKey))
 {printf("ERROR - CryptGenKey: %X\n", GetLastError());
 return;}
// Duplicate the key.
if (!CryptDuplicateKey(hOriginalKey, NULL, 0, &hDuplicateKey))
 {printf("ERROR - CryptDuplicateKey: %X\n", GetLastError());
 return;}
...
// Destroy the original key.
if (!CryptDestroyKey(hOriginalKey))
 {printf("ERROR - CryptDestroyKey: %X\n", GetLastError());
 return;}
// Destroy the duplicate key.
if (!CryptDestroyKey(hDuplicateKey))
 {printf("ERROR - CryptDestroyKey: %X\n", GetLastError());
 return;}

Requirements

Header

wincrypt.h

Library

coredll.lib

See Also

Reference

Cryptography Functions
CryptDestroyKey
CryptSetKeyParam
HCRYPTKEY