#include <nitro/crypto.h>
typedef struct CRYPTORSADecryptInitParam
{
void *key;
u32 key_len;
}
CRYPTORSADecryptInitParam;
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. |
This structure specifies the information required to initialize RSA decryption.
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.
2008/03/27 Initial version.
CONFIDENTIAL