BCryptEnumContextFunctions 函式 (bcrypt.h)
BCryptEnumContextFunctions 函式會取得指定組態表中內容的密碼編譯函式。
語法
NTSTATUS BCryptEnumContextFunctions(
[in] ULONG dwTable,
[in] LPCWSTR pszContext,
[in] ULONG dwInterface,
[in, out] ULONG *pcbBuffer,
[in, out] PCRYPT_CONTEXT_FUNCTIONS *ppBuffer
);
參數
[in] dwTable
識別要從中擷取內容函式的組態數據表。 這可以是下列其中一個值。
值 | 意義 |
---|---|
|
從本機計算機組態數據表擷取內容函式。 |
|
此值無法使用。 |
[in] pszContext
Null 終止 Unicode 字串的指標,其中包含要列舉函式的內容識別碼。
[in] dwInterface
識別要擷取函式的密碼編譯介面。 這可以是下列其中一個值。
[in, out] pcbBuffer
在專案上, ULONG 變數的位址包含 ppBuffer 所指向之緩衝區的大小,以位元組為單位。 如果這個大小不夠大,無法保存一組內容標識符,此函式將會失敗並 STATUS_BUFFER_TOO_SMALL。
此函式傳回之後,這個值會包含複製到 ppBuffer 緩衝區的位元元組數目。
[in, out] ppBuffer
接收此函式所擷取之內容函式集之 CRYPT_CONTEXT_FUNCTIONS 結構的指標位址。 由其所指向的值, 由此緩衝區 參數所指向的值包含這個緩衝區的大小。
如果此參數所指向的值是 NULL,此函式將會配置所需的記憶體。 當此記憶體不再需要時,必須將此指標傳遞至 BCryptFreeBuffer 函式,以釋出此記憶體。
如果此參數為 NULL,則此函式會將所需的大小以位元組為單位,放在 由STATUS_BUFFER_TOO_SMALL參數 指向的變數中,並傳回 STATUS_BUFFER_TOO_SMALL。
傳回值
傳回狀態代碼,指出函式的成功或失敗。
可能的傳回碼包括但不限於下列各項。
傳回碼 | Description |
---|---|
|
函式成功。 |
|
ppBuffer 參數不是 NULL,而且由 azureBuffer 參數指向的值不夠大,無法保存一組內容。 |
|
一或多個參數無效。 |
|
發生記憶體配置失敗。 |
|
找不到符合指定準則的內容函式。 |
備註
BCryptEnumContextFunctions 只能在使用者模式中呼叫。
範例
下列範例示範如何使用 BCryptEnumContextFunctions 函式來列舉 local-machine 組態數據表中所有內容的主要儲存函式。
#include <windows.h>
#include <stdio.h>
#include <Bcrypt.h>
#pragma comment(lib, "Bcrypt.lib")
#ifndef NT_SUCCESS
#define NT_SUCCESS(Status) ((NTSTATUS)(Status) >= 0)
#endif
NTSTATUS EnumContextFunctions()
{
NTSTATUS status;
ULONG uSize = 0;
PCRYPT_CONTEXTS pContexts = NULL;
// Get the contexts for the local machine.
// CNG will allocate the memory for us.
status = BCryptEnumContexts(CRYPT_LOCAL, &uSize, &pContexts);
if(NT_SUCCESS(status))
{
// Enumerate the context identifiers.
for(ULONG uContextIndex = 0;
uContextIndex < pContexts->cContexts;
uContextIndex++)
{
wprintf(L"Context functions for %s:\n",
pContexts->rgpszContexts[uContextIndex]);
// Get the functions for this context.
// CNG will allocate the memory for us.
PCRYPT_CONTEXT_FUNCTIONS pContextFunctions = NULL;
status = BCryptEnumContextFunctions(
CRYPT_LOCAL,
pContexts->rgpszContexts[uContextIndex],
NCRYPT_SCHANNEL_INTERFACE,
&uSize,
&pContextFunctions);
if(NT_SUCCESS(status))
{
// Enumerate the functions.
for(ULONG i = 0;
i < pContextFunctions->cFunctions;
i++)
{
wprintf(L"\t%s\n",
pContextFunctions->rgpszFunctions[i]);
}
// 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 |