1#ifndef _C_SIGNING_KEY_H
2#define _C_SIGNING_KEY_H
66 typedef error_type (CALLING_CONVENTION *SigningKey_Cleanup_Function)(
void* user_data);
72 SigningKey_Initialize_Function sign_init,
73 SigningKey_Update_Function sign_update,
74 SigningKey_Final_Function sign_final,
75 SigningKey_Cleanup_Function sign_cleanup,
This file contains macro declarations for importing and exporting symbols from library boundaries.
This file contains all type forward declarations returned by the library API.
This file contains all supported digest algorithms.
This file contains types and constants used as parameters or return values.
Represents memory stored data.
Base class for reference counting.
Used for document signing.
error_type CALLING_CONVENTION SigningKey_FromUnknown(IUnknownHandle *handle, SigningKeyHandle **result)
Convert IUnknownHandle to BufferHandle.
error_type CALLING_CONVENTION SigningKey_CreateCustom(SigningKey_Initialize_Function sign_init, SigningKey_Update_Function sign_update, SigningKey_Final_Function sign_final, SigningKey_Cleanup_Function sign_cleanup, void *user_data, SigningKeyHandle **result)
Creates a custom SigningKeyHandle to provide custom sign operation.
error_type CALLING_CONVENTION SigningKey_ToUnknown(SigningKeyHandle *handle, IUnknownHandle **result)
Reinterpret current object as IUnknownHandle.
error_type CALLING_CONVENTION SigningKey_Release(SigningKeyHandle *handle)
Decrement the internal reference counter.
uint32_t error_type
This is return value type of all API functions.
Definition c_types.h:25
MessageDigestAlgorithmType
Supported digest algorithms used as hash functions.
Definition c_message_digest_algorithm.h:22