#include <nitro/crypto.h>
typedef struct CRYPTORSAEncryptInitParam
{
void *key;
u32 key_len;
}
CRYPTORSAEncryptInitParam;
key |
Specifies the address of the string where the RSA public key is stored. |
key_len |
Specifies the length of the string for the RSA public key. |
This structure specifies the information required to initialize RSA encryption.
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 public key in DER format.
2008/03/27 Initial version.
CONFIDENTIAL