mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-24 02:43:03 +01:00
Backport workaround for unkown Windows configuration preventing security to work
This commit is contained in:
parent
21f6e8f640
commit
32fbbd9d1d
@ -43,14 +43,15 @@ void GenerateRandomBytes(void* buffer, size_t size)
|
|||||||
HCRYPTPROV hProv;
|
HCRYPTPROV hProv;
|
||||||
|
|
||||||
// Acquire crypto-provider context handle.
|
// Acquire crypto-provider context handle.
|
||||||
if (! CryptAcquireContext(&hProv, NULL, NULL, PROV_RSA_FULL, 0))
|
if (! CryptAcquireContext(&hProv, NULL, NULL, PROV_RSA_FULL, CRYPT_VERIFYCONTEXT))
|
||||||
{
|
{
|
||||||
if (GetLastError() == NTE_BAD_KEYSET)
|
if (GetLastError() == NTE_BAD_KEYSET)
|
||||||
{
|
{
|
||||||
// A common cause of this error is that the key container does not exist.
|
// A common cause of this error is that the key container does not exist.
|
||||||
// To create a key container, call CryptAcquireContext
|
// To create a key container, call CryptAcquireContext
|
||||||
// using the CRYPT_NEWKEYSET flag.
|
// using the CRYPT_NEWKEYSET flag.
|
||||||
if (! CryptAcquireContext(&hProv, NULL, NULL, PROV_RSA_FULL, CRYPT_NEWKEYSET))
|
if (! CryptAcquireContext(&hProv, NULL, NULL, PROV_RSA_FULL,
|
||||||
|
CRYPT_VERIFYCONTEXT | CRYPT_NEWKEYSET))
|
||||||
{
|
{
|
||||||
Firebird::system_call_failed::raise("CryptAcquireContext");
|
Firebird::system_call_failed::raise("CryptAcquireContext");
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user