BCryptAddContextFunction function
[BCryptAddContextFunction is available for use in the operating systems specified in the Requirements section. It may be altered or unavailable in subsequent versions.]
The BCryptAddContextFunction function adds a cryptographic function to the list of functions that are supported by an existing CNG context.
Syntax
NTSTATUS WINAPI BCryptAddContextFunction( _In_ ULONG dwTable, _In_ LPCWSTR pszContext, _In_ ULONG dwInterface, _In_ LPCWSTR pszFunction, _In_ ULONG dwPosition );
Parameters
- dwTable [in]
-
Identifies the configuration table that the context exists in. This can be one of the following values.
Value Meaning - CRYPT_LOCAL
The context exists in the local-machine configuration table.
- CRYPT_DOMAIN
This value is not available for use.
- pszContext [in]
-
A pointer to a null-terminated Unicode string that contains the identifier of the context to add the function to.
- dwInterface [in]
-
Identifies the cryptographic interface to add the function to. This can be one of the following values.
- pszFunction [in]
-
A pointer to a null-terminated Unicode string that contains the identifier of the cryptographic function to add.
- dwPosition [in]
-
Specifies the position in the list at which to insert this function. The function is inserted at this position ahead of any existing functions. The CRYPT_PRIORITY_TOP value is used to insert the function at the top of the list. The CRYPT_PRIORITY_BOTTOM value is used to insert the function at the end of the list.
Return value
Returns a status code that indicates the success or failure of the function.
Possible return codes include, but are not limited to, the following.
| Return code | Description |
|---|---|
|
The function was successful. |
|
One or more parameters are not valid. |
|
A memory allocation failure occurred. |
|
The context could not be found. |
Remarks
If the function added is already in the list, it will be removed and inserted at the new position.
BCryptAddContextFunction can be called only in user mode.
Requirements
|
Minimum supported client |
Windows Vista [desktop apps only] |
|---|---|
|
Minimum supported server |
Windows Server 2008 [desktop apps only] |
|
Header |
|
|
Library |
|
|
DLL |
|
See also