The CryptAcquireContext function is used to acquire a handle to a particular key container within a particular CSP. This returned handle can then be used to make calls to the selected CSP.
This function performs two operations. It first attempts to find a CSP with the characteristics described in the dwProvType and pszProvider parameters. If the CSP is found, then the function attempts to find a key container within the CSP matching the name specified by the pszContainer parameter.
This function can also be used to create and destroy key containers, depending on the value of the dwFlags parameter.
BOOL CRYPTFUNC CryptAcquireContext(
HCRYPTPROV *phProv, | |
LPCTSTR pszContainer, | |
LPCTSTR pszProvider, | |
DWORD dwProvType, | |
DWORD dwFlags | |
); |
If this parameter is NULL, then a default key container name will be used. For example, if the Microsoft RSA Base Provider is being used, then the current user’s logon name will be used as the name of the key container. Other CSPs may also have default key containers that can be acquired in this way.
An application can obtain the name of the acquired key container at a later
time by reading the PP_CONTAINER parameter from the CryptGetProvParam
function.
If this parameter is NULL then the user default provider is used. This situation is discussed in detail in the section Interfacing with a Cryptographic Service Provider (CSP).
An application can obtain the name of the acquired CSP at a later time by
reading the PP_NAME parameter from the CryptGetProvParam
function.
This option is intended to be used by applications whose only cryptographic need is to verify digital signatures. The only operations normally needed in this case are public key import, hashing, and signature verification.
When CryptAcquireContext is called, many CSPs will require input from
the owning user before granting access to the private keys in the key
container. For example, the private keys may be encrypted, requiring a
password from the user before they can be used. However, if the
CRYPT_VERIFYCONTEXT flag is specified, access to the private keys is not
required and the user interface can be bypassed.
Note That when key containers are created, most CSPs will not automatically create any public/private key pairs. These keys must be created as a separate step with the CryptGenKey function.
Important This flag should only be set by administrative applications.
Normal applications should not create key containers.
When the CRYPT_DELETEKEYSET flag is set, the value returned in phProv is undefined and, thus, the CryptReleaseContext function need not be called afterwards.
Important This flag should only be set by administrative applications. Normal applications should not destroy key containers.
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.
Error |
Description |
ERROR_INVALID_PARAMETER |
One of the parameters contains an invalid value. This is most often an illegal pointer. |
ERROR_NOT_ENOUGH_MEMORY |
The operating system ran out of memory during the operation. |
NTE_BAD_FLAGS |
The dwFlags parameter has an illegal value. |
NTE_BAD_KEYSET |
The Registry entry for the key container could not be opened and may not exist. |
NTE_BAD_KEYSET_PARAM |
The pszContainer or pszProvider parameter is set to an illegal value. |
NTE_BAD_PROV_TYPE |
The value of the dwProvType parameter is out of range. All provider types must be from 1 to 999, inclusive. |
NTE_BAD_SIGNATURE |
The provider DLL signature did not verify correctly. Either the DLL or the digital signature has been tampered with. |
NTE_EXISTS |
The dwFlags parameter is CRYPT_NEWKEYSET, but the key container already exists. |
NTE_KEYSET_ENTRY_BAD |
The Registry entry for the pszContainer key container was found (in the HKEY_CURRENT_USER window), but is corrupt. See the section System Administration for details about CryptoAPI’s Registry usage. |
NTE_KEYSET_NOT_DEF |
No Registry entry exists in the HKEY_CURRENT_USER window for the key container specified by pszContainer. |
NTE_NO_MEMORY |
The CSP ran out of memory during the operation. |
NTE_PROV_DLL_NOT_FOUND |
The provider DLL file does not exist or is not on the current path. |
NTE_PROV_TYPE_ENTRY_BAD |
The Registry entry for the provider type specified by dwProvType is corrupt. This error may relate to either the user default CSP list or the machine default CSP list. See the section System Administration for details about CryptoAPI’s Registry usage. |
NTE_PROV_TYPE_NO_MATCH |
The provider type specified by dwProvType does not match the provider type found in the Registry. Note that this error can only occur when pszProvider specifies an actual CSP name. |
NTE_PROV_TYPE_NOT_DEF |
No Registry entry exists for the provider type specified by dwProvType. |
NTE_PROVIDER_DLL_FAIL |
The provider DLL file could not be loaded, and may not exist. If it exists, then the file is not a valid DLL. |
NTE_SIGNATURE_FILE_BAD |
An error occurred while loading the DLL file image, prior to verifying its signature. |
#include <wincrypt.h> HCRYPTPROV hProv = 0; BYTE pbData[1000]; DWORD dwDataLen; // Get handle to the default PROV_RSA_FULL provider. if(!CryptAcquireContext(&hProv, NULL, NULL, PROV_RSA_FULL, 0)) { printf("Error %x during CryptAcquireContext!\n", GetLastError()); return; } // Read the name of the default CSP. dwDataLen = 1000; if(!CryptGetProvParam(hProv, PP_NAME, pbData, &dwDataLen, 0)) { printf("Error %x reading CSP name!\n", GetLastError()); return; } printf(“Provider name:%s\n”, pbData); // Read the name of the default key container. dwDataLen = 1000; if(!CryptGetProvParam(hProv, PP_CONTAINER, pbData, &dwDataLen, 0)) { printf("Error %x reading key container name!\n", GetLastError()); return; } printf(“Key Container name:%s\n”, pbData); // Perform cryptographic operations. ... // Release provider handle. if(!CryptReleaseContext(hProv, 0)) { printf("Error %x during CryptReleaseContext!\n", GetLastError()); return; } // **************************************************************** // Get handle to the Microsoft RSA Base Provider and the // "Foo" key container. if(!CryptAcquireContext(&hProv, TEXT("Foo"), MS_DEF_PROV, PROV_RSA_FULL, 0)) { printf("Error %x during CryptAcquireContext!\n", GetLastError()); return; } // Perform cryptographic operations. ... // Release provider handle. if(!CryptReleaseContext(hProv, 0)) { printf("Error %x during CryptReleaseContext!\n", GetLastError()); return; } // **************************************************************** // Get handle to the default provider. Create a new key container // named "Bar". Note that this key container will be empty until keys // are explicitly created with the CryptGenKey function. lstrcpy(szProv, ); lstrcpy(szContainer, ); if(!CryptAcquireContext(&hProv, TEXT("Bar"), NULL, PROV_RSA_FULL, CRYPT_NEWKEYSET)) { printf("Error %x during CryptAcquireContext!\n", GetLastError()); return; } // Perform cryptographic operations. ... // Release provider handle. if(!CryptReleaseContext(hProv, 0)) { printf("Error %x during CryptReleaseContext!\n", GetLastError()); return; }
CryptGenKey, CryptGetProvParam, CryptReleaseContext
file: /Techref/os/win/api/win32/func/src/f11_17.htm, 15KB, , updated: 2000/4/7 11:19, local time: 2024/11/6 20:21,
3.22.181.246:LOG IN ©2024 PLEASE DON'T RIP! THIS SITE CLOSES OCT 28, 2024 SO LONG AND THANKS FOR ALL THE FISH!
|
©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? <A HREF="http://massmind.org/Techref/os/win/api/win32/func/src/f11_17.htm"> CryptAcquireContext Release 2]</A> |
Did you find what you needed? |
Welcome to massmind.org! |
Welcome to massmind.org! |
.