CRYPTORSAEncryptParam

Definition


#include <nitro/crypto.h>

typedef struct CRYPTORSAEncryptParam
{
    void    *in;
    u32     in_len;
    void    *out;
    u32     out_size;
}
CRYPTORSAEncryptParam;
		

Elements

in Specifies the address of the string to be encrypted with RSA.
in_len Specifies the length of the string to be encrypted with RSA.
out Specifies the output buffer address for the string to be encrypted.
out_size Specifies the buffer size of out.

Description

Structure used to specify the information about the string and output destination for RSA encryption.
Before the functions are called, applications must first set the values for each member.

Revision History

2008/03/27 Initial version.


CONFIDENTIAL