please dont rip this site Prev Next

CryptGetUserKey info  Overview  Group

The CryptGetUserKey function retrieves a handle to a permanent user key pair, such as the user’s signature key pair.

BOOL CRYPTFUNC CryptGetUserKey(

    HCRYPTPROV hProv,

    DWORD dwKeySpec,

    HCRYPTKEY *phUserKey

   );

Parameters

hProv
[in] A handle to the application’s CSP. An application obtains this handle using the CryptAcquireContext function.
dwKeySpec
[in] The specification of the key to retrieve. The following keys are retrievable from almost all providers:

Additionally, some providers allow access to other user specific keys through this function. See the documentation on the specific provider for details.

phUserKey
[out] The address that the function copies the handle of the retrieved key to.

Return Values

If the function succeeds, the return value is nonzero.

If the function fails, the return value is zero. To retrieve extended error information, use the GetLastError function.

The following table lists the error codes most commonly returned by the GetLastError function. The error codes prefaced by “NTE” are generated by the particular CSP you are using.

Error

Description

ERROR_INVALID_HANDLE

One of the parameters specifies an invalid handle.

ERROR_INVALID_PARAMETER

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

NTE_BAD_KEY

The dwKeySpec parameter contains an invalid value.

NTE_BAD_UID

The hProv parameter does not contain a valid context handle.

NTE_NO_KEY

The key requested by the dwKeySpec parameter does not exist.

Example

#include <wincrypt.h>



HCRYPTPROV hProv = 0;

HCRYPTKEY hSignKey = 0;

HCRYPTKEY hXchgKey = 0;



// Get handle to user default provider.

if(!CryptAcquireContext(&hProv, NULL, NULL, PROV_RSA_FULL, 0)) {

    printf("Error %x during CryptAcquireContext!\n", GetLastError());

    goto done;

}



// Get handle to signature key.

if(!CryptGetUserKey(hProv, AT_SIGNATURE, &hSignKey)) {

    printf("Error %x during CryptGetUserKey!\n", GetLastError());

    goto done;

}



// Get handle to key exchange key.

if(!CryptGetUserKey(hProv, AT_KEYEXCHANGE, &hXchgKey)) {

    printf("Error %x during CryptGetUserKey!\n", GetLastError());

    goto done;

}



// Do something with 'hSignKey' and 'hXchgKey'.

...



done:



// Destroy signature key handle.

if(hSignKey != 0) CryptDestroyKey(hSignKey);



// Destroy key exchange key handle.

if(hXchgKey != 0) CryptDestroyKey(hXchgKey);



// Release provider handle.

if(hProv != 0) CryptReleaseContext(hProv, 0);

 

See Also

CryptAcquireContext, CryptDestroyKey, CryptGenKey 


file: /Techref/os/win/api/win32/func/src/f12_10.htm, 5KB, , updated: 2000/4/7 12:19, local time: 2024/4/23 19:22,
TOP NEW HELP FIND: 
3.145.173.112:LOG IN

 ©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions?
Please DO link to this page! Digg it! / MAKE!

<A HREF="http://www.piclist.com/techref/os/win/api/win32/func/src/f12_10.htm"> CryptGetUserKey Release 2]</A>

After you find an appropriate page, you are invited to your to this massmind site! (posts will be visible only to you before review) Just type a nice message (short messages are blocked as spam) in the box and press the Post button. (HTML welcomed, but not the <A tag: Instead, use the link box to link to another page. A tutorial is available Members can login to post directly, become page editors, and be credited for their posts.


Link? Put it here: 
if you want a response, please enter your email address: 
Attn spammers: All posts are reviewed before being made visible to anyone other than the poster.
Did you find what you needed?

  PICList 2024 contributors:
o List host: MIT, Site host massmind.org, Top posters @none found
- Page Editors: James Newton, David Cary, and YOU!
* Roman Black of Black Robotics donates from sales of Linistep stepper controller kits.
* Ashley Roll of Digital Nemesis donates from sales of RCL-1 RS232 to TTL converters.
* Monthly Subscribers: Gregg Rew. on-going support is MOST appreciated!
* Contributors: Richard Seriani, Sr.
 

Welcome to www.piclist.com!

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

  .