My Project
rsa.h
Go to the documentation of this file.
1 
33 int wc_InitRsaKey(RsaKey* key, void* heap);
34 
82 int wc_InitRsaKey_Id(RsaKey* key, unsigned char* id, int len,
83  void* heap, int devId);
84 
110 int wc_RsaSetRNG(RsaKey* key, WC_RNG* rng);
111 
132 int wc_FreeRsaKey(RsaKey* key);
133 
176 int wc_RsaDirect(byte* in, word32 inLen, byte* out, word32* outSz,
177  RsaKey* key, int type, WC_RNG* rng);
178 
249 int wc_RsaPublicEncrypt(const byte* in, word32 inLen, byte* out,
250  word32 outLen, RsaKey* key, WC_RNG* rng);
251 
273 int wc_RsaPrivateDecryptInline(byte* in, word32 inLen, byte** out,
274  RsaKey* key);
275 
307 int wc_RsaPrivateDecrypt(const byte* in, word32 inLen, byte* out,
308  word32 outLen, RsaKey* key);
309 
346 int wc_RsaSSL_Sign(const byte* in, word32 inLen, byte* out,
347  word32 outLen, RsaKey* key, WC_RNG* rng);
348 
384 int wc_RsaSSL_VerifyInline(byte* in, word32 inLen, byte** out,
385  RsaKey* key);
386 
422 int wc_RsaSSL_Verify(const byte* in, word32 inLen, byte* out,
423  word32 outLen, RsaKey* key);
424 
472 int wc_RsaPSS_Sign(const byte* in, word32 inLen, byte* out,
473  word32 outLen, enum wc_HashType hash, int mgf,
474  RsaKey* key, WC_RNG* rng);
475 
526 int wc_RsaPSS_Verify(byte* in, word32 inLen, byte* out,
527  word32 outLen, enum wc_HashType hash, int mgf,
528  RsaKey* key);
529 
587 int wc_RsaPSS_VerifyInline(byte* in, word32 inLen, byte** out,
588  enum wc_HashType hash, int mgf,
589  RsaKey* key);
655 int wc_RsaPSS_VerifyCheck(byte* in, word32 inLen,
656  byte* out, word32 outLen,
657  const byte* digest, word32 digestLen,
658  enum wc_HashType hash, int mgf,
659  RsaKey* key);
727 int wc_RsaPSS_VerifyCheck_ex(byte* in, word32 inLen,
728  byte* out, word32 outLen,
729  const byte* digest, word32 digestLen,
730  enum wc_HashType hash, int mgf, int saltLen,
731  RsaKey* key);
732 
797 int wc_RsaPSS_VerifyCheckInline(byte* in, word32 inLen, byte** out,
798  const byte* digest, word32 digentLen,
799  enum wc_HashType hash, int mgf,
800  RsaKey* key);
866 int wc_RsaPSS_VerifyCheckInline_ex(byte* in, word32 inLen, byte** out,
867  const byte* digest, word32 digentLen,
868  enum wc_HashType hash, int mgf, int saltLen,
869  RsaKey* key);
870 
931 int wc_RsaPSS_CheckPadding(const byte* in, word32 inLen, byte* sig,
932  word32 sigSz,
933  enum wc_HashType hashType);
996 int wc_RsaPSS_CheckPadding_ex(const byte* in, word32 inLen, byte* sig,
997  word32 sigSz, enum wc_HashType hashType, int saltLen, int bits);
1016 int wc_RsaEncryptSize(RsaKey* key);
1017 
1059 int wc_RsaPrivateKeyDecode(const byte* input, word32* inOutIdx,
1060  RsaKey* key, word32 inSz);
1061 
1108 int wc_RsaPublicKeyDecode(const byte* input, word32* inOutIdx,
1109  RsaKey* key, word32 inSz);
1110 
1153 int wc_RsaPublicKeyDecodeRaw(const byte* n, word32 nSz,
1154  const byte* e, word32 eSz, RsaKey* key);
1155 
1194 int wc_RsaKeyToDer(RsaKey* key, byte* output, word32 inLen);
1195 
1237 int wc_RsaPublicEncrypt_ex(const byte* in, word32 inLen, byte* out,
1238  word32 outLen, RsaKey* key, WC_RNG* rng, int type,
1239  enum wc_HashType hash, int mgf, byte* label, word32 labelSz);
1240 
1290 int wc_RsaPrivateDecrypt_ex(const byte* in, word32 inLen,
1291  byte* out, word32 outLen, RsaKey* key, int type,
1292  enum wc_HashType hash, int mgf, byte* label, word32 labelSz);
1293 
1348 int wc_RsaPrivateDecryptInline_ex(byte* in, word32 inLen,
1349  byte** out, RsaKey* key, int type, enum wc_HashType hash,
1350  int mgf, byte* label, word32 labelSz);
1351 
1393 int wc_RsaFlattenPublicKey(RsaKey* key, byte* e, word32* eSz, byte* n,
1394  word32* nSz);
1395 
1429 int wc_RsaKeyToPublicDer(RsaKey* key, byte* output, word32 inLen);
1430 
1465 int wc_RsaKeyToPublicDer_ex(RsaKey* key, byte* output, word32 inLen,
1466  int with_header);
1467 
1537 int wc_MakeRsaKey(RsaKey* key, int size, long e, WC_RNG* rng);
1538 
1582 int wc_RsaSetNonBlock(RsaKey* key, RsaNb* nb);
1583 
1614 int wc_RsaSetNonBlockTime(RsaKey* key, word32 maxBlockUs,
1615  word32 cpuMHz);
int wc_InitRsaKey(RsaKey *key, void *heap)
This function initializes a provided RsaKey struct. It also takes in a heap identifier,...
int wc_FreeRsaKey(RsaKey *key)
This function frees a provided RsaKey struct using mp_clear.
int wc_RsaSSL_VerifyInline(byte *in, word32 inLen, byte **out, RsaKey *key)
Used to verify that the message was signed by RSA key. The output uses the same byte array as the inp...
int wc_RsaSSL_Verify(const byte *in, word32 inLen, byte *out, word32 outLen, RsaKey *key)
Used to verify that the message was signed by key.
int wc_RsaPublicKeyDecode(const byte *input, word32 *inOutIdx, RsaKey *key, word32 inSz)
This function parses a DER-formatted RSA public key, extracts the public key and stores it in the giv...
int wc_RsaPrivateDecryptInline(byte *in, word32 inLen, byte **out, RsaKey *key)
This functions is utilized by the wc_RsaPrivateDecrypt function for decrypting.
int wc_RsaPSS_VerifyInline(byte *in, word32 inLen, byte **out, enum wc_HashType hash, int mgf, RsaKey *key)
Decrypt input signature to verify that the message was signed by RSA key. The output uses the same by...
int wc_MakeRsaKey(RsaKey *key, int size, long e, WC_RNG *rng)
This function generates a RSA private key of length size (in bits) and given exponent (e)....
int wc_RsaKeyToDer(RsaKey *key, byte *output, word32 inLen)
This function converts an RsaKey key to DER format. The result is written to output and it returns th...
int wc_RsaPublicKeyDecodeRaw(const byte *n, word32 nSz, const byte *e, word32 eSz, RsaKey *key)
This function decodes the raw elements of an RSA public key, taking in the public modulus (n) and exp...
int wc_RsaKeyToPublicDer(RsaKey *key, byte *output, word32 inLen)
Convert Rsa Public key to DER format. Writes to output, and returns count of bytes written.
int wc_RsaPSS_VerifyCheck_ex(byte *in, word32 inLen, byte *out, word32 outLen, const byte *digest, word32 digestLen, enum wc_HashType hash, int mgf, int saltLen, RsaKey *key)
Verify the message signed with RSA-PSS. The key has to be associated with RNG by wc_RsaSetRNG when WC...
int wc_RsaSetNonBlockTime(RsaKey *key, word32 maxBlockUs, word32 cpuMHz)
This function configures the maximum amount of blocking time in microseconds. It uses a pre-computed ...
int wc_RsaFlattenPublicKey(RsaKey *key, byte *e, word32 *eSz, byte *n, word32 *nSz)
Flattens the RsaKey structure into individual elements (e, n) used for the RSA algorithm.
int wc_RsaPrivateDecryptInline_ex(byte *in, word32 inLen, byte **out, RsaKey *key, int type, enum wc_HashType hash, int mgf, byte *label, word32 labelSz)
This function uses RSA to decrypt a message inline and gives the option of what padding type....
int wc_RsaPrivateDecrypt(const byte *in, word32 inLen, byte *out, word32 outLen, RsaKey *key)
This functions provides private RSA decryption.
int wc_RsaPublicEncrypt(const byte *in, word32 inLen, byte *out, word32 outLen, RsaKey *key, WC_RNG *rng)
This function encrypts a message from in and stores the result in out. It requires an initialized pub...
int wc_RsaKeyToPublicDer_ex(RsaKey *key, byte *output, word32 inLen, int with_header)
Convert RSA Public key to DER format. Writes to output, and returns count of bytes written....
int wc_RsaPSS_CheckPadding_ex(const byte *in, word32 inLen, byte *sig, word32 sigSz, enum wc_HashType hashType, int saltLen, int bits)
Checks the PSS data to ensure that the signature matches. Salt length is equal to hash length.
int wc_RsaSSL_Sign(const byte *in, word32 inLen, byte *out, word32 outLen, RsaKey *key, WC_RNG *rng)
Signs the provided array with the private key.
int wc_RsaPublicEncrypt_ex(const byte *in, word32 inLen, byte *out, word32 outLen, RsaKey *key, WC_RNG *rng, int type, enum wc_HashType hash, int mgf, byte *label, word32 labelSz)
This function performs RSA encrypt while allowing the choice of which padding to use.
int wc_RsaEncryptSize(RsaKey *key)
Returns the encryption size for the provided key structure.
int wc_RsaPrivateDecrypt_ex(const byte *in, word32 inLen, byte *out, word32 outLen, RsaKey *key, int type, enum wc_HashType hash, int mgf, byte *label, word32 labelSz)
This function uses RSA to decrypt a message and gives the option of what padding type.
int wc_RsaPSS_Sign(const byte *in, word32 inLen, byte *out, word32 outLen, enum wc_HashType hash, int mgf, RsaKey *key, WC_RNG *rng)
Signs the provided array with the private key.
int wc_RsaSetNonBlock(RsaKey *key, RsaNb *nb)
This function sets the non-blocking RSA context. When a RsaNb context is set it enables fast math bas...
int wc_InitRsaKey_Id(RsaKey *key, unsigned char *id, int len, void *heap, int devId)
This function initializes a provided RsaKey struct. The id and len are used to identify the key on th...
int wc_RsaPSS_VerifyCheck(byte *in, word32 inLen, byte *out, word32 outLen, const byte *digest, word32 digestLen, enum wc_HashType hash, int mgf, RsaKey *key)
Verify the message signed with RSA-PSS. Salt length is equal to hash length. The key has to be associ...
int wc_RsaPSS_CheckPadding(const byte *in, word32 inLen, byte *sig, word32 sigSz, enum wc_HashType hashType)
Checks the PSS data to ensure that the signature matches. Salt length is equal to hash length....
int wc_RsaPrivateKeyDecode(const byte *input, word32 *inOutIdx, RsaKey *key, word32 inSz)
This function parses a DER-formatted RSA private key, extracts the private key and stores it in the g...
int wc_RsaPSS_Verify(byte *in, word32 inLen, byte *out, word32 outLen, enum wc_HashType hash, int mgf, RsaKey *key)
Decrypt input signature to verify that the message was signed by key. The key has to be associated wi...
int wc_RsaPSS_VerifyCheckInline_ex(byte *in, word32 inLen, byte **out, const byte *digest, word32 digentLen, enum wc_HashType hash, int mgf, int saltLen, RsaKey *key)
Verify the message signed with RSA-PSS. The input buffer is reused for the output buffer....
int wc_RsaSetRNG(RsaKey *key, WC_RNG *rng)
This function associates RNG with Key. It is needed when WC_RSA_BLINDING is enabled.
int wc_RsaDirect(byte *in, word32 inLen, byte *out, word32 *outSz, RsaKey *key, int type, WC_RNG *rng)
Function that does the RSA operation directly with no padding. The input size must match key size....
int wc_RsaPSS_VerifyCheckInline(byte *in, word32 inLen, byte **out, const byte *digest, word32 digentLen, enum wc_HashType hash, int mgf, RsaKey *key)
Verify the message signed with RSA-PSS. The input buffer is reused for the output buffer....