BCryptEnumContextFunctionProviders 函式 (bcrypt.h)
BCryptEnumContextFunctionProviders 函式會取得指定組態表中內容之密碼編譯函式的提供者。
語法
NTSTATUS BCryptEnumContextFunctionProviders(
[in] ULONG dwTable,
[in] LPCWSTR pszContext,
[in] ULONG dwInterface,
[in] LPCWSTR pszFunction,
[in, out] ULONG *pcbBuffer,
[in, out] PCRYPT_CONTEXT_FUNCTION_PROVIDERS *ppBuffer
);
參數
[in] dwTable
識別要從中擷取內容函式提供者的組態數據表。 這可以是下列其中一個值。
值 | 意義 |
---|---|
|
從本機計算機組態數據表擷取內容函式。 |
|
這個值無法使用。 |
[in] pszContext
Null 終止 Unicode 字串的指標,其中包含要列舉函式提供者的內容識別符。
[in] dwInterface
識別要擷取函式提供者的密碼編譯介面。 這可以是下列其中一個值。
值 | 意義 |
---|---|
|
擷取非對稱加密函式提供者。 |
|
擷取加密函式提供者。 |
|
擷 取哈希 函式提供者。 |
|
擷取隨機數產生器函式提供者。 |
|
擷取秘密合約函式提供者。 |
|
擷取簽章函式提供者。 |
|
擷取金鑰記憶體函式提供者。 |
|
擷取安全通道函式提供者。 |
[in] pszFunction
Null 終止 Unicode 字串的指標,其中包含要列舉提供者之函式的標識符。
[in, out] pcbBuffer
在專案上, ULONG 變數的位址包含 ppBuffer 所指向緩衝區的大小,以位元組為單位。 如果這個大小不夠大,無法保存內容標識符集,此函式將會失敗並 STATUS_BUFFER_TOO_SMALL。
這個函式傳回之後,這個值會包含複製到 ppBuffer 緩衝區的位元元組數目。
[in, out] ppBuffer
接收這個函式所擷取之內容函式提供者集 之CRYPT_CONTEXT_FUNCTION_PROVIDERS 結構的指標位址。 由參數所指向的值包含這個緩衝區的大小。
如果此參數所指向的值是 NULL,此函式會配置所需的記憶體。 當不再需要此記憶體時,必須將此指標傳遞至 BCryptFreeBuffer 函 式來釋放。
如果此參數為 NULL,則此函式會將所需的大小,以位元組為單位,放在 由STATUS_BUFFER_TOO_SMALL參數 所指向的變數中,並傳回 STATUS_BUFFER_TOO_SMALL。
傳回值
傳回狀態代碼,指出函式的成功或失敗。
可能的傳回碼包括但不限於下列專案。
傳回碼 | Description |
---|---|
|
函式成功。 |
|
ppBuffer 參數不是 NULL,而由其所指向的值不夠大,無法保存一組內容。 |
|
一或多個參數無效。 |
|
發生記憶體配置失敗。 |
|
找不到符合指定準則的內容函式提供者。 |
備註
BCryptEnumContextFunctionProviders 只能在使用者模式中呼叫。
範例
下列範例示範如何使用 BCryptEnumContextFunctionProviders 函 式來列舉本機計算機組態數據表中所有內容之所有重要記憶體函式的提供者。
#include <windows.h>
#include <stdio.h>
#include <ntstatus.h>
#include <Bcrypt.h>
#pragma comment(lib, "Bcrypt.lib")
#ifndef NT_SUCCESS
#define NT_SUCCESS(Status) ((NTSTATUS)(Status) >= 0)
#endif
NTSTATUS EnumContextFunctionProviders()
{
NTSTATUS status;
ULONG uSize = 0;
ULONG uTable = CRYPT_LOCAL;
PCRYPT_CONTEXTS pContexts = NULL;
// Get the contexts for the local machine.
// CNG will allocate the memory for us.
status = BCryptEnumContexts(uTable, &uSize, &pContexts);
if(NT_SUCCESS(status))
{
// Enumerate the context identifiers.
for(ULONG a = 0;
a < pContexts->cContexts;
a++)
{
ULONG uInterface = NCRYPT_SCHANNEL_INTERFACE;
wprintf(L"Context functions for %s:\n",
pContexts->rgpszContexts[a]);
// Get the functions for this context.
// CNG will allocate the memory for us.
PCRYPT_CONTEXT_FUNCTIONS pContextFunctions = NULL;
status = BCryptEnumContextFunctions(
uTable,
pContexts->rgpszContexts[a],
uInterface,
&uSize,
&pContextFunctions);
if(NT_SUCCESS(status))
{
// Enumerate the functions.
for(ULONG b = 0;
b < pContextFunctions->cFunctions;
b++)
{
wprintf(L"\tFunction providers for %s:\n",
pContextFunctions->rgpszFunctions[b]);
// Get the providers for this function.
PCRYPT_CONTEXT_FUNCTION_PROVIDERS pProviders;
pProviders = NULL;
status = BCryptEnumContextFunctionProviders(
uTable,
pContexts->rgpszContexts[a],
uInterface,
pContextFunctions->rgpszFunctions[b],
&uSize,
&pProviders);
if(NT_SUCCESS(status))
{
for(ULONG c = 0;
c < pProviders->cProviders;
c++)
{
wprintf(L"\t\t%s\n",
pProviders->rgpszProviders[c]);
}
}
else if(STATUS_NOT_FOUND == status)
{
wprintf(L"\t\tNone found.\n");
}
}
// Free the context functions buffer.
BCryptFreeBuffer(pContextFunctions);
}
}
// Free the contexts buffer.
BCryptFreeBuffer(pContexts);
}
return status;
}
規格需求
需求 | 值 |
---|---|
最低支援的用戶端 | Windows Vista [僅限傳統型應用程式] |
最低支援的伺服器 | Windows Server 2008 [僅限傳統型應用程式] |
目標平台 | Windows |
標頭 | bcrypt.h |
程式庫 | Bcrypt.lib |
Dll | Bcrypt.dll |