CRYPTORSASignInitParam

Definition


#include <nitro/crypto.h>

typedef struct CRYPTORSASignInitParam
{
    void    *key;
    u32     key_len;
}
CRYPTORSASignInitParam;
		

Elements

key Specifies the address of the string where the RSA private key is stored.
key_len Specifies the length of the string for the RSA private key.

Description

This structure specifies the information required to initialize digital signature creation.
Before the functions are called, applications must first set the values for each member.

In the address specified by the key member, store the entire image of the RSA private key in DER format.

Revision History

2008/04/17 Initial version.


CONFIDENTIAL