skip book previous and next navigation links
go up to top of book: HP Open Source Security for OpenVMS Volume 1:... HP Open Source Security for OpenVMS Volume 1:...
go to beginning of reference: API FunctionsAPI Functions
go to previous page: CSSM_CSP_CreateRandomGenContextCSSM_CSP_CreateRandomGenContext
go to next page: CSSM_CSP_CreateSymmetricContextCSSM_CSP_CreateSymmetricContext
end of book navigation links


CSSM_CSP_CreateSignatureContext
Library
Description
See Also
 Parameters
Return Value

NAME

CSSM_CSP_CreateSignatureContext - Create a signature cryptographic context (CDSA)

SYNOPSIS  

# include <cssm.h>

CSSM_RETURN CSSMAPI CSSM_CSP_CreateSignatureContext(CSSM_CSP_HANDLE CSPHandle,CSSM_ALGORITHMS AlgorithmID,const CSSM_ACCESS_CREDENTIALS *AccessCred,const CSSM_KEY *Key,CSSM_CC_HANDLE *NewContextHandle)


return to top LIBRARY  

Common Security Services Manager library (cdsa$incssm300_shr.exe)


return to top PARAMETERS  

CSPHandle (input)
 The handle that describes the add-in CryptographicService Provider module used to perform this function. If a NULLhandle is specified, CSSM returns error.
AlgorithmID (input)
 The algorithm identification number for a signature/verificationalgorithm.
AccessCred (input/optional)
 A pointer to the set of one or more credentialsrequired to unlock the private key. The credentials structure cancontain an immediate value for the credential, such as a passphrase,or the caller can specify a callback function the CSP can use toobtain one or more credentials. Credentials are required for signatureoperations, not for verify operations.
Key (input) The key used to sign and verify. The caller passesa pointer to a CSSM_KEY structure containing the key and the keylength.
NewContextHandle (output)
 Cryptographic context handle.


return to top DESCRIPTION  

This function creates a signature cryptographic context forsign and verify, given a handle of a CSP, an algorithm identificationnumber, a key, and an AccessCredentials structure.The AccessCredentials structure will be usedto unlock the private key when this context is used to perform asigning operation. The cryptographic context handle is returned.The cryptographic context handle can be used to call sign and verify cryptographicfunctions.


return to top RETURN VALUE  

A CSSM_RETURN value indicating success or specifying a particularerror condition. The value CSSM_OK indicates success. All othervalues represent an error condition.


return to top SEE ALSO  

Books

Intel CDSA Application Developer's Guide

Online Help

Functions: CSSM_SignData, CSSM_SignDataInit, CSSM_SignDataUpdate, CSSM_SignDataFinal, CSSM_VerifyData, CSSM_VerifyDataInit, CSSM_VerifyDataUpdate, CSSM_VerifyDataFinal, CSSM_GetContext, CSSM_SetContext, CSSM_DeleteContext, CSSM_GetContextAttribute, CSSM_UpdateContextAttributes


go to previous page: CSSM_CSP_CreateRandomGenContextCSSM_CSP_CreateRandomGenContext
go to next page: CSSM_CSP_CreateSymmetricContextCSSM_CSP_CreateSymmetricContext