Go to the source code of this file.
|
| #define | XP_MIN_SIGNATURE_LEN_IN_BYTES 256 |
| |
| #define | CryptoX_Result int |
| |
| #define | CryptoX_Success 0 |
| |
| #define | CryptoX_Error (-1) |
| |
| #define | CryptoX_Succeeded(X) ((X) == CryptoX_Success) |
| |
| #define | CryptoX_Failed(X) ((X) != CryptoX_Success) |
| |
| #define | CryptoX_InvalidHandleValue NULL |
| |
| #define | CryptoX_ProviderHandle void* |
| |
| #define | CryptoX_SignatureHandle void* |
| |
| #define | CryptoX_PublicKey void* |
| |
| #define | CryptoX_Certificate void* |
| |
| #define | CryptoX_InitCryptoProvider(CryptoHandle) CryptoX_Error |
| |
| #define | CryptoX_VerifyBegin(CryptoHandle, SignatureHandle, PublicKey) CryptoX_Error |
| |
| #define | CryptoX_FreeSignatureHandle(SignatureHandle) |
| |
| #define | CryptoX_VerifyUpdate(SignatureHandle, buf, len) CryptoX_Error |
| |
| #define | CryptoX_LoadPublicKey(CryptoHandle, certData, dataSize, publicKey) CryptoX_Error |
| |
| #define | CryptoX_VerifySignature(hash, publicKey, signedData, len) CryptoX_Error |
| |
| #define | CryptoX_FreePublicKey(key) CryptoX_Error |
| |
◆ CryptoX_Certificate
| #define CryptoX_Certificate void* |
◆ CryptoX_Error
| #define CryptoX_Error (-1) |
◆ CryptoX_Failed
◆ CryptoX_FreePublicKey
◆ CryptoX_FreeSignatureHandle
| #define CryptoX_FreeSignatureHandle |
( |
|
SignatureHandle | ) |
|
◆ CryptoX_InitCryptoProvider
◆ CryptoX_InvalidHandleValue
| #define CryptoX_InvalidHandleValue NULL |
◆ CryptoX_LoadPublicKey
| #define CryptoX_LoadPublicKey |
( |
|
CryptoHandle, |
|
|
|
certData, |
|
|
|
dataSize, |
|
|
|
publicKey |
|
) |
| CryptoX_Error |
◆ CryptoX_ProviderHandle
| #define CryptoX_ProviderHandle void* |
◆ CryptoX_PublicKey
| #define CryptoX_PublicKey void* |
◆ CryptoX_Result
| #define CryptoX_Result int |
◆ CryptoX_SignatureHandle
| #define CryptoX_SignatureHandle void* |
◆ CryptoX_Succeeded
◆ CryptoX_Success
| #define CryptoX_Success 0 |
◆ CryptoX_VerifyBegin
| #define CryptoX_VerifyBegin |
( |
|
CryptoHandle, |
|
|
|
SignatureHandle, |
|
|
|
PublicKey |
|
) |
| CryptoX_Error |
◆ CryptoX_VerifySignature
| #define CryptoX_VerifySignature |
( |
|
hash, |
|
|
|
publicKey, |
|
|
|
signedData, |
|
|
|
len |
|
) |
| CryptoX_Error |
◆ CryptoX_VerifyUpdate
| #define CryptoX_VerifyUpdate |
( |
|
SignatureHandle, |
|
|
|
buf, |
|
|
|
len |
|
) |
| CryptoX_Error |
◆ XP_MIN_SIGNATURE_LEN_IN_BYTES
| #define XP_MIN_SIGNATURE_LEN_IN_BYTES 256 |