12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559 |
- /*!
- \ingroup RSA
- \brief This function initializes a provided RsaKey struct. It also takes
- in a heap identifier, for use with user defined memory overrides
- (see XMALLOC, XFREE, XREALLOC).
- The key has to be associated with RNG by wc_RsaSetRNG when WC_RSA_BLINDING
- is enabled.
- \return 0 Returned upon successfully initializing the RSA structure for
- use with encryption and decryption
- \return BAD_FUNC_ARGS Returned if the RSA key pointer evaluates to NULL
- \param key pointer to the RsaKey structure to initialize
- \param heap pointer to a heap identifier, for use with memory overrides,
- allowing custom handling of memory allocation. This heap will be the
- default used when allocating memory for use with this RSA object
- _Example_
- \code
- RsaKey enc;
- int ret;
- ret = wc_InitRsaKey(&enc, NULL); // not using heap hint. No custom memory
- if ( ret != 0 ) {
- // error initializing RSA key
- }
- \endcode
- \sa wc_RsaInitCavium
- \sa wc_FreeRsaKey
- \sa wc_RsaSetRNG
- */
- int wc_InitRsaKey(RsaKey* key, void* heap);
- /*!
- \ingroup RSA
- \brief This function initializes a provided RsaKey struct. The id and
- len are used to identify the key on the device while the devId identifies
- the device. It also takes in a heap identifier, for use with user defined
- memory overrides (see XMALLOC, XFREE, XREALLOC).
- The key has to be associated with RNG by wc_RsaSetRNG when WC_RSA_BLINDING
- is enabled.
- \return 0 Returned upon successfully initializing the RSA structure for
- use with encryption and decryption
- \return BAD_FUNC_ARGS Returned if the RSA key pointer evaluates to NULL
- \return BUFFER_E Returned if len is less than 0 or greater than
- RSA_MAX_ID_LEN.
- \param key pointer to the RsaKey structure to initialize
- \param id identifier of key on device
- \param len length of identifier in bytes
- \param heap pointer to a heap identifier, for use with memory overrides,
- allowing custom handling of memory allocation. This heap will be the
- default used when allocating memory for use with this RSA object
- \param devId ID to use with hardware device
- _Example_
- \code
- RsaKey enc;
- unsigned char* id = (unsigned char*)"RSA2048";
- int len = 6;
- int devId = 1;
- int ret;
- ret = wc_CryptoDev_RegisterDevice(devId, wc_Pkcs11_CryptoDevCb,
- &token);
- if ( ret != 0) {
- // error associating callback and token with device id
- }
- ret = wc_InitRsaKey_Id(&enc, id, len, NULL, devId); // not using heap hint
- if ( ret != 0 ) {
- // error initializing RSA key
- }
- \endcode
- \sa wc_InitRsaKey
- \sa wc_RsaInitCavium
- \sa wc_FreeRsaKey
- \sa wc_RsaSetRNG
- */
- int wc_InitRsaKey_Id(RsaKey* key, unsigned char* id, int len,
- void* heap, int devId);
- /*!
- \ingroup RSA
- \brief This function associates RNG with Key. It is needed when WC_RSA_BLINDING
- is enabled.
- \return 0 Returned upon success
- \return BAD_FUNC_ARGS Returned if the RSA key, rng pointer evaluates to NULL
- \param key pointer to the RsaKey structure to be associated
- \param rng pointer to the WC_RNG structure to associate with
- _Example_
- \code
- ret = wc_InitRsaKey(&key, NULL);
- if (ret == 0) {
- ret = wc_InitRng(&rng);
- } else return -1;
- if (ret == 0) {
- ret = wc_RsaSetRNG(&key, &rng);
- \endcode
- \sa wc_InitRsaKey
- \sa wc_RsaSetRNG
- */
- int wc_RsaSetRNG(RsaKey* key, WC_RNG* rng);
- /*!
- \ingroup RSA
- \brief This function frees a provided RsaKey struct using mp_clear.
- \return 0 Returned upon successfully freeing the key
- \param key pointer to the RsaKey structure to free
- _Example_
- \code
- RsaKey enc;
- wc_InitRsaKey(&enc, NULL); // not using heap hint. No custom memory
- ... set key, do encryption
- wc_FreeRsaKey(&enc);
- \endcode
- \sa wc_InitRsaKey
- */
- int wc_FreeRsaKey(RsaKey* key);
- /*!
- \ingroup RSA
- \brief This function encrypts a message from in and stores the result
- in out. It requires an initialized public key and a random number
- generator. As a side effect, this function will return the bytes written
- to out in outLen.
- \return Success Upon successfully encrypting the input message, returns
- 0 for success and less than zero for failure. Also returns the number
- bytes written to out by storing the value in outLen
- \return BAD_FUNC_ARG Returned if any of the input parameters are invalid
- \return RSA_BUFFER_E Returned if the output buffer is too small to store
- the ciphertext
- \return RNG_FAILURE_E Returned if there is an error generating a random
- block using the provided RNG structure
- \return MP_INIT_E May be returned if there is an error in the math
- library used while encrypting the message
- \return MP_READ_E May be returned if there is an error in the math
- library used while encrypting the message
- \return MP_CMP_E May be returned if there is an error in the math
- library used while encrypting the message
- \return MP_INVMOD_E May be returned if there is an error in the math
- library used while encrypting the message
- \return MP_EXPTMOD_E May be returned if there is an error in the math
- library used while encrypting the message
- \return MP_MOD_E May be returned if there is an error in the math
- library used while encrypting the message
- \return MP_MUL_E May be returned if there is an error in the math
- library used while encrypting the message
- \return MP_ADD_E May be returned if there is an error in the math
- library used while encrypting the message
- \return MP_MULMOD_E May be returned if there is an error in the math
- library used while encrypting the message
- \return MP_TO_E May be returned if there is an error in the math
- library used while encrypting the message
- \return MP_MEM May be returned if there is an error in the math
- library used while encrypting the message
- \return MP_ZERO_E May be returned if there is an error in the math
- library used while encrypting the message
- \param in pointer to a buffer containing the input message to encrypt
- \param inLen the length of the message to encrypt
- \param out pointer to the buffer in which to store the output ciphertext
- \param outLen the length of the output buffer
- \param key pointer to the RsaKey structure containing the public
- key to use for encryption
- \param rng The RNG structure with which to generate random block padding
- _Example_
- \code
- RsaKey pub;
- int ret = 0;
- byte n[] = { // initialize with received n component of public key };
- byte e[] = { // initialize with received e component of public key };
- byte msg[] = { // initialize with plaintext of message to encrypt };
- byte cipher[256]; // 256 bytes is large enough to store 2048 bit RSA
- ciphertext
- wc_InitRsaKey(&pub, NULL); // not using heap hint. No custom memory
- wc_RsaPublicKeyDecodeRaw(n, sizeof(n), e, sizeof(e), &pub);
- // initialize with received public key parameters
- ret = wc_RsaPublicEncrypt(msg, sizeof(msg), out, sizeof(out), &pub, &rng);
- if ( ret != 0 ) {
- // error encrypting message
- }
- \endcode
- \sa wc_RsaPrivateDecrypt
- */
- int wc_RsaPublicEncrypt(const byte* in, word32 inLen, byte* out,
- word32 outLen, RsaKey* key, WC_RNG* rng);
- /*!
- \ingroup RSA
- \brief This functions is utilized by the wc_RsaPrivateDecrypt function
- for decrypting.
- \return Success Length of decrypted data.
- \return RSA_PAD_E RsaUnPad error, bad formatting
- \param in The byte array to be decrypted.
- \param inLen The length of in.
- \param out The byte array for the decrypted data to be stored.
- \param key The key to use for decryption.
- _Example_
- \code
- none
- \endcode
- \sa wc_RsaPrivateDecrypt
- */
- int wc_RsaPrivateDecryptInline(byte* in, word32 inLen, byte** out,
- RsaKey* key);
- /*!
- \ingroup RSA
- \brief This functions provides private RSA decryption.
- \return Success length of decrypted data.
- \return MEMORY_E -125, out of memory error
- \return BAD_FUNC_ARG -173, Bad function argument provided
- \param in The byte array to be decrypted.
- \param inLen The length of in.
- \param out The byte array for the decrypted data to be stored.
- \param outLen The length of out.
- \param key The key to use for decryption.
- _Example_
- \code
- ret = wc_RsaPublicEncrypt(in, inLen, out, sizeof(out), &key, &rng);
- if (ret < 0) {
- return -1;
- }
- ret = wc_RsaPrivateDecrypt(out, ret, plain, sizeof(plain), &key);
- if (ret < 0) {
- return -1;
- }
- \endcode
- \sa RsaUnPad
- \sa wc_RsaFunction
- \sa wc_RsaPrivateDecryptInline
- */
- int wc_RsaPrivateDecrypt(const byte* in, word32 inLen, byte* out,
- word32 outLen, RsaKey* key);
- /*!
- \ingroup RSA
- \brief Signs the provided array with the private key.
- \return RSA_BUFFER_E: -131, RSA buffer error, output too small or
- input too large
- \param in The byte array to be encrypted.
- \param inLen The length of in.
- \param out The byte array for the encrypted data to be stored.
- \param outLen The length of out.
- \param key The key to use for encryption.
- \param RNG The RNG struct to use for random number purposes.
- _Example_
- \code
- ret = wc_RsaSSL_Sign(in, inLen, out, sizeof(out), &key, &rng);
- if (ret < 0) {
- return -1;
- }
- memset(plain, 0, sizeof(plain));
- ret = wc_RsaSSL_Verify(out, ret, plain, sizeof(plain), &key);
- if (ret < 0) {
- return -1;
- }
- \endcode
- \sa wc_RsaPad
- */
- int wc_RsaSSL_Sign(const byte* in, word32 inLen, byte* out,
- word32 outLen, RsaKey* key, WC_RNG* rng);
- /*!
- \ingroup RSA
- \brief Used to verify that the message was signed by RSA key. The output
- uses the same byte array as the input.
- \return >0 Length of text.
- \return <0 An error occurred.
- \param in Byte array to be decrypted.
- \param inLen Length of the buffer input.
- \param out Pointer to a pointer for decrypted information.
- \param key RsaKey to use.
- _Example_
- \code
- RsaKey key;
- WC_WC_RNG rng;
- int ret = 0;
- long e = 65537; // standard value to use for exponent
- wc_InitRsaKey(&key, NULL); // not using heap hint. No custom memory
- wc_InitRng(&rng);
- wc_MakeRsaKey(&key, 2048, e, &rng);
- byte in[] = { // Initialize with some RSA encrypted information }
- byte* out;
- if(wc_RsaSSL_VerifyInline(in, sizeof(in), &out, &key) < 0)
- {
- // handle error
- }
- \endcode
- \sa wc_RsaSSL_Verify
- \sa wc_RsaSSL_Sign
- */
- int wc_RsaSSL_VerifyInline(byte* in, word32 inLen, byte** out,
- RsaKey* key);
- /*!
- \ingroup RSA
- \brief Used to verify that the message was signed by key.
- \return Success Length of text on no error.
- \return MEMORY_E memory exception.
- \param in The byte array to be decrypted.
- \param inLen The length of in.
- \param out The byte array for the decrypted data to be stored.
- \param outLen The length of out.
- \param key The key to use for verification.
- _Example_
- \code
- ret = wc_RsaSSL_Sign(in, inLen, out, sizeof(out), &key, &rng);
- if (ret < 0) {
- return -1;
- }
- memset(plain, 0, sizeof(plain));
- ret = wc_RsaSSL_Verify(out, ret, plain, sizeof(plain), &key);
- if (ret < 0) {
- return -1;
- }
- \endcode
- \sa wc_RsaSSL_Sign
- */
- int wc_RsaSSL_Verify(const byte* in, word32 inLen, byte* out,
- word32 outLen, RsaKey* key);
- /*!
- \ingroup RSA
- \brief Signs the provided array with the private key.
- \return RSA_BUFFER_E: -131, RSA buffer error, output too small or
- input too large
- \param in The byte array to be encrypted.
- \param inLen The length of in.
- \param out The byte array for the encrypted data to be stored.
- \param outLen The length of out.
- \param hash The hash type to be in message
- \param mgf Mask Generation Function Identifiers
- \param key The key to use for verification.
- _Example_
- \code
- ret = wc_InitRsaKey(&key, NULL);
- if (ret == 0) {
- ret = wc_InitRng(&rng);
- } else return -1;
- if (ret == 0) {
- ret = wc_RsaSetRNG(&key, &rng);
- } else return -1;
- if (ret == 0) {
- ret = wc_MakeRsaKey(&key, 2048, WC_RSA_EXPONENT, &rng);
- } else return -1;
- ret = wc_RsaPSS_Sign((byte*)szMessage, (word32)XSTRLEN(szMessage)+1,
- pSignature, sizeof(pSignature),
- WC_HASH_TYPE_SHA256, WC_MGF1SHA256, &key, &rng);
- if (ret > 0 ){
- sz = ret;
- } else return -1;
- ret = wc_RsaPSS_Verify(pSignature, sz, pt, outLen,
- WC_HASH_TYPE_SHA256, WC_MGF1SHA256, &key);
- if (ret <= 0)return -1;
- wc_FreeRsaKey(&key);
- wc_FreeRng(&rng);
- \endcode
- \sa wc_RsaPSS_Verify
- \sa wc_RsaSetRNG
- */
- int wc_RsaPSS_Sign(const byte* in, word32 inLen, byte* out,
- word32 outLen, enum wc_HashType hash, int mgf,
- RsaKey* key, WC_RNG* rng);
- /*!
- \ingroup RSA
- \brief Decrypt input signature to verify that the message was signed by key.
- The key has to be associated with RNG by wc_RsaSetRNG when WC_RSA_BLINDING is enabled.
- \return Success Length of text on no error.
- \return MEMORY_E memory exception.
- \param in The byte array to be decrypted.
- \param inLen The length of in.
- \param out The byte array for the decrypted data to be stored.
- \param outLen The length of out.
- \param hash The hash type to be in message
- \param mgf Mask Generation Function Identifiers
- \param key The key to use for verification.
- _Example_
- \code
- ret = wc_InitRsaKey(&key, NULL);
- if (ret == 0) {
- ret = wc_InitRng(&rng);
- } else return -1;
- if (ret == 0) {
- ret = wc_RsaSetRNG(&key, &rng);
- } else return -1;
- if (ret == 0) {
- ret = wc_MakeRsaKey(&key, 2048, WC_RSA_EXPONENT, &rng);
- } else return -1;
- ret = wc_RsaPSS_Sign((byte*)szMessage, (word32)XSTRLEN(szMessage)+1,
- pSignature, sizeof(pSignature),
- WC_HASH_TYPE_SHA256, WC_MGF1SHA256, &key, &rng);
- if (ret > 0 ){
- sz = ret;
- } else return -1;
- ret = wc_RsaPSS_Verify(pSignature, sz, pt, outLen,
- WC_HASH_TYPE_SHA256, WC_MGF1SHA256, &key);
- if (ret <= 0)return -1;
- wc_FreeRsaKey(&key);
- wc_FreeRng(&rng);
- \endcode
- \sa wc_RsaPSS_Sign
- \sa wc_RsaPSS_VerifyInline
- \sa wc_RsaPSS_CheckPadding
- \sa wc_RsaSetRNG
- */
- int wc_RsaPSS_Verify(byte* in, word32 inLen, byte* out,
- word32 outLen, enum wc_HashType hash, int mgf,
- RsaKey* key);
- /*!
- \ingroup RSA
- \brief Decrypt input signature to verify that the message was signed by RSA
- key.
- The output uses the same byte array as the input.
- The key has to be associated with RNG by wc_RsaSetRNG when WC_RSA_BLINDING
- is enabled.
- \return >0 Length of text.
- \return <0 An error occurred.
- \param in Byte array to be decrypted.
- \param inLen Length of the buffer input.
- \param out Pointer to address containing the PSS data.
- \param hash The hash type to be in message
- \param mgf Mask Generation Function Identifiers
- \param key RsaKey to use.
- _Example_
- \code
- ret = wc_InitRsaKey(&key, NULL);
- if (ret == 0) {
- ret = wc_InitRng(&rng);
- } else return -1;
- if (ret == 0) {
- ret = wc_RsaSetRNG(&key, &rng);
- } else return -1;
- if (ret == 0) {
- ret = wc_MakeRsaKey(&key, 2048, WC_RSA_EXPONENT, &rng);
- } else return -1;
- ret = wc_RsaPSS_Sign(digest, digestSz, pSignature, pSignatureSz,
- WC_HASH_TYPE_SHA256, WC_MGF1SHA256, &key, &rng);
- if (ret > 0 ){
- sz = ret;
- } else return -1;
- ret = wc_RsaPSS_VerifyInline(pSignature, sz, pt,
- WC_HASH_TYPE_SHA256, WC_MGF1SHA256, &key);
- if (ret <= 0)return -1;
- wc_FreeRsaKey(&key);
- wc_FreeRng(&rng);
- \endcode
- \sa wc_RsaPSS_Verify
- \sa wc_RsaPSS_Sign
- \sa wc_RsaPSS_VerifyCheck
- \sa wc_RsaPSS_VerifyCheck_ex
- \sa wc_RsaPSS_VerifyCheckInline
- \sa wc_RsaPSS_VerifyCheckInline_ex
- \sa wc_RsaPSS_CheckPadding
- \sa wc_RsaPSS_CheckPadding_ex
- \sa wc_RsaSetRNG
- */
- int wc_RsaPSS_VerifyInline(byte* in, word32 inLen, byte** out,
- enum wc_HashType hash, int mgf,
- RsaKey* key);
- /*!
- \ingroup RSA
- \brief Verify the message signed with RSA-PSS.
- Salt length is equal to hash length.
- The key has to be associated with RNG by wc_RsaSetRNG when WC_RSA_BLINDING is enabled.
- \return the length of the PSS data on success and negative indicates failure.
- \return MEMORY_E memory exception.
- \param in The byte array to be decrypted.
- \param inLen The length of in.
- \param out Pointer to address containing the PSS data.
- \param outLen The length of out.
- \param digest Hash of the data that is being verified.
- \param digestLen Length of hash.
- \param hash Hash algorithm.
- \param mgf Mask generation function.
- \param key Public RSA key.
- _Example_
- \code
- ret = wc_InitRsaKey(&key, NULL);
- if (ret == 0) {
- ret = wc_InitRng(&rng);
- } else return -1;
- if (ret == 0) {
- ret = wc_RsaSetRNG(&key, &rng);
- } else return -1;
- if (ret == 0) {
- ret = wc_MakeRsaKey(&key, 2048, WC_RSA_EXPONENT, &rng);
- } else return -1;
- if (ret == 0) {
- digestSz = wc_HashGetDigestSize(WC_HASH_TYPE_SHA256);
- ret = wc_Hash(WC_HASH_TYPE_SHA256, message, sz, digest, digestSz);
- } else return -1;
- if (ret == 0) {
- ret = wc_RsaPSS_Sign(digest, digestSz, pSignature, pSignatureSz,
- WC_HASH_TYPE_SHA256, WC_MGF1SHA256, &key, &rng);
- if (ret > 0 ){
- sz = ret;
- } else return -1;
- } else return -1;
- if (ret == 0) {
- ret = wc_RsaPSS_VerifyCheck(pSignature, sz, pt, outLen,
- digest, digestSz, WC_HASH_TYPE_SHA256, WC_MGF1SHA256, &key);
- if (ret <= 0) return -1;
- } else return -1;
- wc_FreeRsaKey(&key);
- wc_FreeRng(&rng);
- \endcode
- \sa wc_RsaPSS_Sign
- \sa wc_RsaPSS_Verify
- \sa wc_RsaPSS_VerifyCheck_ex
- \sa wc_RsaPSS_VerifyCheckInline
- \sa wc_RsaPSS_VerifyCheckInline_ex
- \sa wc_RsaPSS_CheckPadding
- \sa wc_RsaPSS_CheckPadding_ex
- \sa wc_RsaSetRNG
- */
- 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);
- /*!
- \ingroup RSA
- \brief Verify the message signed with RSA-PSS.
- The key has to be associated with RNG by wc_RsaSetRNG when WC_RSA_BLINDING is enabled.
- \return the length of the PSS data on success and negative indicates failure.
- \return MEMORY_E memory exception.
- \param in The byte array to be decrypted.
- \param inLen The length of in.
- \param out Pointer to address containing the PSS data.
- \param outLen The length of out.
- \param digest Hash of the data that is being verified.
- \param digestLen Length of hash.
- \param hash Hash algorithm.
- \param mgf Mask generation function.
- \param saltLen Length of salt used. RSA_PSS_SALT_LEN_DEFAULT (-1) indicates salt
- length is the same as the hash length. RSA_PSS_SALT_LEN_DISCOVER
- indicates salt length is determined from the data.
- \param key Public RSA key.
- _Example_
- \code
- ret = wc_InitRsaKey(&key, NULL);
- if (ret == 0) {
- ret = wc_InitRng(&rng);
- } else return -1;
- if (ret == 0) {
- ret = wc_RsaSetRNG(&key, &rng);
- } else return -1;
- if (ret == 0) {
- ret = wc_MakeRsaKey(&key, 2048, WC_RSA_EXPONENT, &rng);
- } else return -1;
- if (ret == 0) {
- digestSz = wc_HashGetDigestSize(WC_HASH_TYPE_SHA256);
- ret = wc_Hash(WC_HASH_TYPE_SHA256, message, sz, digest, digestSz);
- } else return -1;
- if (ret == 0) {
- ret = wc_RsaPSS_Sign(digest, digestSz, pSignature, pSignatureSz,
- WC_HASH_TYPE_SHA256, WC_MGF1SHA256, &key, &rng);
- if (ret > 0 ){
- sz = ret;
- } else return -1;
- } else return -1;
- if (ret == 0) {
- ret = wc_RsaPSS_VerifyCheck_ex(pSignature, sz, pt, outLen,
- digest, digestSz, WC_HASH_TYPE_SHA256, WC_MGF1SHA256, saltLen, &key);
- if (ret <= 0) return -1;
- } else return -1;
- wc_FreeRsaKey(&key);
- wc_FreeRng(&rng);
- \endcode
- \sa wc_RsaPSS_Sign
- \sa wc_RsaPSS_Verify
- \sa wc_RsaPSS_VerifyCheck
- \sa wc_RsaPSS_VerifyCheckInline
- \sa wc_RsaPSS_VerifyCheckInline_ex
- \sa wc_RsaPSS_CheckPadding
- \sa wc_RsaPSS_CheckPadding_ex
- \sa wc_RsaSetRNG
- */
- 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);
- /*!
- \ingroup RSA
- \brief Verify the message signed with RSA-PSS.
- The input buffer is reused for the output buffer.
- Salt length is equal to hash length.
- The key has to be associated with RNG by wc_RsaSetRNG when WC_RSA_BLINDING is enabled.
- \return the length of the PSS data on success and negative indicates failure.
- \param in The byte array to be decrypted.
- \param inLen The length of in.
- \param out The byte array for the decrypted data to be stored.
- \param digest Hash of the data that is being verified.
- \param digestLen Length of hash.
- \param hash The hash type to be in message
- \param mgf Mask Generation Function Identifiers
- \param key The key to use for verification.
- _Example_
- \code
- ret = wc_InitRsaKey(&key, NULL);
- if (ret == 0) {
- ret = wc_InitRng(&rng);
- } else return -1;
- if (ret == 0) {
- ret = wc_RsaSetRNG(&key, &rng);
- } else return -1;
- if (ret == 0) {
- ret = wc_MakeRsaKey(&key, 2048, WC_RSA_EXPONENT, &rng);
- } else return -1;
- if (ret == 0) {
- digestSz = wc_HashGetDigestSize(WC_HASH_TYPE_SHA256);
- ret = wc_Hash(WC_HASH_TYPE_SHA256, message, sz, digest, digestSz);
- } else return -1;
- if (ret == 0) {
- ret = wc_RsaPSS_Sign(digest, digestSz, pSignature, pSignatureSz,
- WC_HASH_TYPE_SHA256, WC_MGF1SHA256, &key, &rng);
- if (ret > 0 ){
- sz = ret;
- } else return -1;
- } else return -1;
- if (ret == 0) {
- ret = wc_RsaPSS_VerifyCheckInline(pSignature, sz, pt,
- digest, digestSz, WC_HASH_TYPE_SHA256, WC_MGF1SHA256, &key);
- if (ret <= 0) return -1;
- } else return -1;
- wc_FreeRsaKey(&key);
- wc_FreeRng(&rng);
- \endcode
- \sa wc_RsaPSS_Sign
- \sa wc_RsaPSS_Verify
- \sa wc_RsaPSS_VerifyCheck
- \sa wc_RsaPSS_VerifyCheck_ex
- \sa wc_RsaPSS_VerifyCheckInline_ex
- \sa wc_RsaPSS_CheckPadding
- \sa wc_RsaPSS_CheckPadding_ex
- \sa wc_RsaSetRNG
- */
- int wc_RsaPSS_VerifyCheckInline(byte* in, word32 inLen, byte** out,
- const byte* digest, word32 digentLen,
- enum wc_HashType hash, int mgf,
- RsaKey* key);
- /*!
- \ingroup RSA
- \brief Verify the message signed with RSA-PSS.
- The input buffer is reused for the output buffer.
- The key has to be associated with RNG by wc_RsaSetRNG when WC_RSA_BLINDING is enabled.
- \return the length of the PSS data on success and negative indicates failure.
- \param in The byte array to be decrypted.
- \param inLen The length of in.
- \param out The byte array for the decrypted data to be stored.
- \param digest Hash of the data that is being verified.
- \param digestLen Length of hash.
- \param hash The hash type to be in message
- \param mgf Mask Generation Function Identifiers
- \param saltLen Length of salt used. RSA_PSS_SALT_LEN_DEFAULT (-1) indicates salt
- length is the same as the hash length. RSA_PSS_SALT_LEN_DISCOVER
- indicates salt length is determined from the data.
- \param key The key to use for verification.
- _Example_
- \code
- ret = wc_InitRsaKey(&key, NULL);
- if (ret == 0) {
- ret = wc_InitRng(&rng);
- } else return -1;
- if (ret == 0) {
- ret = wc_RsaSetRNG(&key, &rng);
- } else return -1;
- if (ret == 0) {
- ret = wc_MakeRsaKey(&key, 2048, WC_RSA_EXPONENT, &rng);
- } else return -1;
- if (ret == 0) {
- digestSz = wc_HashGetDigestSize(WC_HASH_TYPE_SHA256);
- ret = wc_Hash(WC_HASH_TYPE_SHA256, message, sz, digest, digestSz);
- } else return -1;
- if (ret == 0) {
- ret = wc_RsaPSS_Sign(digest, digestSz, pSignature, pSignatureSz,
- WC_HASH_TYPE_SHA256, WC_MGF1SHA256, &key, &rng);
- if (ret > 0 ){
- sz = ret;
- } else return -1;
- } else return -1;
- if (ret == 0) {
- ret = wc_RsaPSS_VerifyCheckInline_ex(pSignature, sz, pt,
- digest, digestSz, WC_HASH_TYPE_SHA256, WC_MGF1SHA256, saltLen, &key);
- if (ret <= 0) return -1;
- } else return -1;
- wc_FreeRsaKey(&key);
- wc_FreeRng(&rng);
- \endcode
- \sa wc_RsaPSS_Sign
- \sa wc_RsaPSS_Verify
- \sa wc_RsaPSS_VerifyCheck
- \sa wc_RsaPSS_VerifyCheck_ex
- \sa wc_RsaPSS_VerifyCheckInline
- \sa wc_RsaPSS_CheckPadding
- \sa wc_RsaPSS_CheckPadding_ex
- \sa wc_RsaSetRNG
- */
- 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);
- /*!
- \ingroup RSA
- \brief Checks the PSS data to ensure that the signature matches.
- Salt length is equal to hash length.
- The key has to be associated with RNG by wc_RsaSetRNG when WC_RSA_BLINDING is enabled.
- \return BAD_PADDING_E when the PSS data is invalid, BAD_FUNC_ARG when
- NULL is passed in to in or sig or inSz is not the same as the hash
- algorithm length and 0 on success.
- \return MEMORY_E memory exception.
- \param in Hash of the data that is being verified.
- \param inSz Length of hash.
- \param sig Buffer holding PSS data.
- \param sigSz Size of PSS data.
- \param hashType Hash algorithm.
- _Example_
- \code
- ret = wc_InitRsaKey(&key, NULL);
- if (ret == 0) {
- ret = wc_InitRng(&rng);
- } else return -1;
- if (ret == 0) {
- ret = wc_RsaSetRNG(&key, &rng);
- } else return -1;
- if (ret == 0) {
- ret = wc_MakeRsaKey(&key, 2048, WC_RSA_EXPONENT, &rng);
- } else return -1;
- if (ret == 0) {
- digestSz = wc_HashGetDigestSize(WC_HASH_TYPE_SHA256);
- ret = wc_Hash(WC_HASH_TYPE_SHA256, message, sz, digest, digestSz);
- } else return -1;
- ret = wc_RsaPSS_Sign(digest, digestSz, pSignature, sizeof(pSignature),
- WC_HASH_TYPE_SHA256, WC_MGF1SHA256, &key, &rng);
- if (ret > 0 ){
- sz = ret;
- } else return -1;
- verify = wc_RsaPSS_Verify(pSignature, sz, out, outLen,
- WC_HASH_TYPE_SHA256, WC_MGF1SHA256, &key);
- if (verify <= 0)return -1;
- ret = wc_RsaPSS_CheckPadding(digest, digestSz, out, verify, hash);
- wc_FreeRsaKey(&key);
- wc_FreeRng(&rng);
- \endcode
- \sa wc_RsaPSS_Sign
- \sa wc_RsaPSS_Verify
- \sa wc_RsaPSS_VerifyInline
- \sa wc_RsaPSS_VerifyCheck
- \sa wc_RsaPSS_VerifyCheck_ex
- \sa wc_RsaPSS_VerifyCheckInline
- \sa wc_RsaPSS_VerifyCheckInline_ex
- \sa wc_RsaPSS_CheckPadding_ex
- \sa wc_RsaSetRNG
- */
- int wc_RsaPSS_CheckPadding(const byte* in, word32 inLen, byte* sig,
- word32 sigSz,
- enum wc_HashType hashType);
- /*!
- \ingroup RSA
- \brief Checks the PSS data to ensure that the signature matches.
- Salt length is equal to hash length.
- \return BAD_PADDING_E when the PSS data is invalid, BAD_FUNC_ARG when
- NULL is passed in to in or sig or inSz is not the same as the hash
- algorithm length and 0 on success.
- \return MEMORY_E memory exception.
- \param in Hash of the data that is being verified.
- \param inSz Length of hash.
- \param sig Buffer holding PSS data.
- \param sigSz Size of PSS data.
- \param hashType Hash algorithm.
- \param saltLen Length of salt used. RSA_PSS_SALT_LEN_DEFAULT (-1) indicates salt
- length is the same as the hash length. RSA_PSS_SALT_LEN_DISCOVER
- indicates salt length is determined from the data.
- \param bits Can be used to calculate salt size in FIPS case
- _Example_
- \code
- ret = wc_InitRsaKey(&key, NULL);
- if (ret == 0) {
- ret = wc_InitRng(&rng);
- } else return -1;
- if (ret == 0) {
- ret = wc_RsaSetRNG(&key, &rng);
- } else return -1;
- if (ret == 0) {
- ret = wc_MakeRsaKey(&key, 2048, WC_RSA_EXPONENT, &rng);
- } else return -1;
- if (ret == 0) {
- digestSz = wc_HashGetDigestSize(WC_HASH_TYPE_SHA256);
- ret = wc_Hash(WC_HASH_TYPE_SHA256, message, sz, digest, digestSz);
- } else return -1;
- ret = wc_RsaPSS_Sign(digest, digestSz, pSignature, sizeof(pSignature),
- WC_HASH_TYPE_SHA256, WC_MGF1SHA256, &key, &rng);
- if (ret > 0 ){
- sz = ret;
- } else return -1;
- verify = wc_RsaPSS_Verify(pSignature, sz, out, outLen,
- WC_HASH_TYPE_SHA256, WC_MGF1SHA256, &key);
- if (verify <= 0)return -1;
- ret = wc_RsaPSS_CheckPadding_ex(digest, digestSz, out, verify, hash, saltLen, 0);
- wc_FreeRsaKey(&key);
- wc_FreeRng(&rng);
- \endcode
- \sa wc_RsaPSS_Sign
- \sa wc_RsaPSS_Verify
- \sa wc_RsaPSS_VerifyInline
- \sa wc_RsaPSS_VerifyCheck
- \sa wc_RsaPSS_VerifyCheck_ex
- \sa wc_RsaPSS_VerifyCheckInline
- \sa wc_RsaPSS_VerifyCheckInline_ex
- \sa wc_RsaPSS_CheckPadding
- */
- int wc_RsaPSS_CheckPadding_ex(const byte* in, word32 inLen, byte* sig,
- word32 sigSz, enum wc_HashType hashType, int saltLen, int bits);
- /*!
- \ingroup RSA
- \brief Returns the encryption size for the provided key structure.
- \return Success Encryption size for the provided key structure.
- \param key The key to use for verification.
- _Example_
- \code
- int sz = wc_RsaEncryptSize(&key);
- \endcode
- \sa wc_InitRsaKey
- \sa wc_InitRsaKey_ex
- \sa wc_MakeRsaKey
- */
- int wc_RsaEncryptSize(RsaKey* key);
- /*!
- \ingroup RSA
- \brief This function parses a DER-formatted RSA private key, extracts the
- private key and stores it in the given RsaKey structure. It also sets the
- distance parsed in idx.
- \return 0 Returned upon successfully parsing the private key from the DER
- encoded input
- \return ASN_PARSE_E Returned if there is an error parsing the private key
- from the input buffer. This may happen if the input private key is not
- properly formatted according to ASN.1 standards
- \return ASN_RSA_KEY_E Returned if there is an error reading the private
- key elements of the RSA key input
- \param input pointer to the buffer containing the DER formatted private
- key to decode
- \param inOutIdx pointer to the index in the buffer at which the key begins
- (usually 0). As a side effect of this function, inOutIdx will store the
- distance parsed through the input buffer
- \param key pointer to the RsaKey structure in which to store the decoded
- private key
- \param inSz size of the input buffer
- _Example_
- \code
- RsaKey enc;
- word32 idx = 0;
- int ret = 0;
- byte der[] = { // initialize with DER-encoded RSA private key };
- wc_InitRsaKey(&enc, NULL); // not using heap hint. No custom memory
- ret = wc_RsaPrivateKeyDecode(der, &idx, &enc, sizeof(der));
- if( ret != 0 ) {
- // error parsing private key
- }
- \endcode
- \sa wc_RsaPublicKeyDecode
- \sa wc_MakeRsaKey
- */
- int wc_RsaPrivateKeyDecode(const byte* input, word32* inOutIdx,
- RsaKey* key, word32 inSz);
- /*!
- \ingroup RSA
- \brief This function parses a DER-formatted RSA public key, extracts the
- public key and stores it in the given RsaKey structure. It also sets the
- distance parsed in idx.
- \return 0 Returned upon successfully parsing the public key from the DER
- encoded input
- \return ASN_PARSE_E Returned if there is an error parsing the public key
- from the input buffer. This may happen if the input public key is not
- properly formatted according to ASN.1 standards
- \return ASN_OBJECT_ID_E Returned if the ASN.1 Object ID does not match
- that of a RSA public key
- \return ASN_EXPECT_0_E Returned if the input key is not correctly
- formatted according to ASN.1 standards
- \return ASN_BITSTR_E Returned if the input key is not correctly formatted
- according to ASN.1 standards
- \return ASN_RSA_KEY_E Returned if there is an error reading the public key
- elements of the RSA key input
- \param input pointer to the buffer containing the input DER-encoded RSA
- public key to decode
- \param inOutIdx pointer to the index in the buffer at which the key
- begins (usually 0). As a side effect of this function, inOutIdx will
- store the distance parsed through the input buffer
- \param key pointer to the RsaKey structure in which to store the decoded
- public key
- \param inSz size of the input buffer
- _Example_
- \code
- RsaKey pub;
- word32 idx = 0;
- int ret = 0;
- byte der[] = { // initialize with DER-encoded RSA public key };
- wc_InitRsaKey(&pub, NULL); // not using heap hint. No custom memory
- ret = wc_RsaPublicKeyDecode(der, &idx, &pub, sizeof(der));
- if( ret != 0 ) {
- // error parsing public key
- }
- \endcode
- \sa wc_RsaPublicKeyDecodeRaw
- */
- int wc_RsaPublicKeyDecode(const byte* input, word32* inOutIdx,
- RsaKey* key, word32 inSz);
- /*!
- \ingroup RSA
- \brief This function decodes the raw elements of an RSA public key, taking
- in the public modulus (n) and exponent (e). It stores these raw elements
- in the provided RsaKey structure, allowing one to use them in the
- encryption/decryption process.
- \return 0 Returned upon successfully decoding the raw elements of the
- public key into the RsaKey structure
- \return BAD_FUNC_ARG Returned if any of the input arguments evaluates to
- NULL
- \return MP_INIT_E Returned if there is an error initializing an integer
- for use with the multiple precision integer (mp_int) library
- \return ASN_GETINT_E Returned if there is an error reading one of the
- provided RSA key elements, n or e
- \param n pointer to a buffer containing the raw modulus parameter of the
- public RSA key
- \param nSz size of the buffer containing n
- \param e pointer to a buffer containing the raw exponent parameter of
- the public RSA key
- \param eSz size of the buffer containing e
- \param key pointer to the RsaKey struct to initialize with the provided
- public key elements
- _Example_
- \code
- RsaKey pub;
- int ret = 0;
- byte n[] = { // initialize with received n component of public key };
- byte e[] = { // initialize with received e component of public key };
- wc_InitRsaKey(&pub, NULL); // not using heap hint. No custom memory
- ret = wc_RsaPublicKeyDecodeRaw(n, sizeof(n), e, sizeof(e), &pub);
- if( ret != 0 ) {
- // error parsing public key elements
- }
- \endcode
- \sa wc_RsaPublicKeyDecode
- */
- int wc_RsaPublicKeyDecodeRaw(const byte* n, word32 nSz,
- const byte* e, word32 eSz, RsaKey* key);
- /*!
- \ingroup RSA
- \brief This function converts an RsaKey key to DER format. The result is
- written to output and it returns the number of bytes written.
- \return 0 Success
- \return BAD_FUNC_ARG Returned if key or output is null, or if key->type
- is not RSA_PRIVATE, or if inLen isn't large enough for output buffer.
- \return MEMORY_E Returned if there is an error allocating memory.
- \param key Initialized RsaKey structure.
- \param output Pointer to output buffer.
- \param inLen Size of output buffer.
- _Example_
- \code
- byte* der;
- // Allocate memory for der
- int derSz = // Amount of memory allocated for der;
- RsaKey key;
- WC_WC_RNG rng;
- long e = 65537; // standard value to use for exponent
- ret = wc_MakeRsaKey(&key, 2048, e, &rng); // generate 2048 bit long
- private key
- wc_InitRsaKey(&key, NULL);
- wc_InitRng(&rng);
- if(wc_RsaKeyToDer(&key, der, derSz) != 0)
- {
- // Handle the error thrown
- }
- \endcode
- \sa wc_RsaKeyToPublicDer
- \sa wc_InitRsaKey
- \sa wc_MakeRsaKey
- \sa wc_InitRng
- */
- int wc_RsaKeyToDer(RsaKey* key, byte* output, word32 inLen);
- /*!
- \ingroup RSA
- \brief This function performs RSA encrypt while allowing the choice of
- which padding to use.
- \return size On successfully encryption the size of the encrypted buffer
- is returned
- \return RSA_BUFFER_E RSA buffer error, output too small or input too large
- \param in pointer to the buffer for encryption
- \param inLen length of the buffer to encrypt
- \param out encrypted msg created
- \param outLen length of buffer available to hold encrypted msg
- \param key initialized RSA key struct
- \param rng initialized WC_RNG struct
- \param type type of padding to use (WC_RSA_OAEP_PAD or WC_RSA_PKCSV15_PAD)
- \param hash type of hash to use (choices can be found in hash.h)
- \param mgf type of mask generation function to use
- \param label an optional label to associate with encrypted message
- \param labelSz size of the optional label used
- _Example_
- \code
- WC_WC_WC_RNG rng;
- RsaKey key;
- byte in[] = “I use Turing Machines to ask questions”
- byte out[256];
- int ret;
- …
- ret = wc_RsaPublicEncrypt_ex(in, sizeof(in), out, sizeof(out), &key, &rng,
- WC_RSA_OAEP_PAD, WC_HASH_TYPE_SHA, WC_MGF1SHA1, NULL, 0);
- if (ret < 0) {
- //handle error
- }
- \endcode
- \sa wc_RsaPublicEncrypt
- \sa wc_RsaPrivateDecrypt_ex
- */
- 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);
- /*!
- \ingroup RSA
- \brief This function uses RSA to decrypt a message and gives the
- option of what padding type.
- \return size On successful decryption, the size of the decrypted message
- is returned.
- \return MEMORY_E Returned if not enough memory on system to malloc a
- needed array.
- \return BAD_FUNC_ARG Returned if a bad argument was passed into the
- function.
- \param in pointer to the buffer for decryption
- \param inLen length of the buffer to decrypt
- \param out decrypted msg created
- \param outLen length of buffer available to hold decrypted msg
- \param key initialized RSA key struct
- \param type type of padding to use (WC_RSA_OAEP_PAD or WC_RSA_PKCSV15_PAD)
- \param hash type of hash to use (choices can be found in hash.h)
- \param mgf type of mask generation function to use
- \param label an optional label to associate with encrypted message
- \param labelSz size of the optional label used
- _Example_
- \code
- WC_WC_WC_RNG rng;
- RsaKey key;
- byte in[] = “I use Turing Machines to ask questions”
- byte out[256];
- byte plain[256];
- int ret;
- …
- ret = wc_RsaPublicEncrypt_ex(in, sizeof(in), out, sizeof(out), &key,
- &rng, WC_RSA_OAEP_PAD, WC_HASH_TYPE_SHA, WC_MGF1SHA1, NULL, 0);
- if (ret < 0) {
- //handle error
- }
- …
- ret = wc_RsaPrivateDecrypt_ex(out, ret, plain, sizeof(plain), &key,
- WC_RSA_OAEP_PAD, WC_HASH_TYPE_SHA, WC_MGF1SHA1, NULL, 0);
- if (ret < 0) {
- //handle error
- }
- \endcode
- \sa none
- */
- 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);
- /*!
- \ingroup RSA
- \brief This function uses RSA to decrypt a message inline and gives the
- option of what padding type. The in buffer will contain the decrypted
- message after being called and the out byte pointer will point to the
- location in the “in” buffer where the plain text is.
- \return size On successful decryption, the size of the decrypted message
- is returned.
- \return MEMORY_E: Returned if not enough memory on system to malloc a
- needed array.
- \return RSA_PAD_E: Returned if an error in the padding was encountered.
- \return BAD_PADDING_E: Returned if an error happened during parsing past
- padding.
- \return BAD_FUNC_ARG: Returned if a bad argument was passed into the
- function.
- \param in pointer to the buffer for decryption
- \param inLen length of the buffer to decrypt
- \param out pointer to location of decrypted message in “in” buffer
- \param key initialized RSA key struct
- \param type type of padding to use (WC_RSA_OAEP_PAD or WC_RSA_PKCSV15_PAD)
- \param hash type of hash to use (choices can be found in hash.h)
- \param mgf type of mask generation function to use
- \param label an optional label to associate with encrypted message
- \param labelSz size of the optional label used
- _Example_
- \code
- WC_WC_WC_RNG rng;
- RsaKey key;
- byte in[] = “I use Turing Machines to ask questions”
- byte out[256];
- byte* plain;
- int ret;
- …
- ret = wc_RsaPublicEncrypt_ex(in, sizeof(in), out, sizeof(out), &key,
- &rng, WC_RSA_OAEP_PAD, WC_HASH_TYPE_SHA, WC_MGF1SHA1, NULL, 0);
- if (ret < 0) {
- //handle error
- }
- …
- ret = wc_RsaPrivateDecryptInline_ex(out, ret, &plain, &key,
- WC_RSA_OAEP_PAD, WC_HASH_TYPE_SHA, WC_MGF1SHA1, NULL, 0);
- if (ret < 0) {
- //handle error
- }
- \endcode
- \sa none
- */
- int wc_RsaPrivateDecryptInline_ex(byte* in, word32 inLen,
- byte** out, RsaKey* key, int type, enum wc_HashType hash,
- int mgf, byte* label, word32 labelSz);
- /*!
- \ingroup RSA
- \brief Flattens the RsaKey structure into individual elements (e, n)
- used for the RSA algorithm.
- \return 0 Returned if the function executed normally, without error.
- \return BAD_FUNC_ARG: Returned if any of the parameters are passed in
- with a null value.
- \return RSA_BUFFER_E: Returned if the e or n buffers passed in are not
- the correct size.
- \return MP_MEM: Returned if an internal function has memory errors.
- \return MP_VAL: Returned if an internal function argument is not valid.
- \param key The key to use for verification.
- \param e a buffer for the value of e. e is a large positive integer in
- the RSA modular arithmetic operation.
- \param eSz the size of the e buffer.
- \param n a buffer for the value of n. n is a large positive integer in
- the RSA modular arithmetic operation.
- \param nSz the size of the n buffer.
- _Example_
- \code
- Rsa key; // A valid RSA key.
- byte e[ buffer sz E.g. 256 ];
- byte n[256];
- int ret;
- word32 eSz = sizeof(e);
- word32 nSz = sizeof(n);
- ...
- ret = wc_RsaFlattenPublicKey(&key, e, &eSz, n, &nSz);
- if (ret != 0) {
- // Failure case.
- }
- \endcode
- \sa wc_InitRsaKey
- \sa wc_InitRsaKey_ex
- \sa wc_MakeRsaKey
- */
- int wc_RsaFlattenPublicKey(RsaKey* key, byte* e, word32* eSz, byte* n,
- word32* nSz);
- /*!
- \ingroup RSA
- \brief Convert Rsa Public key to DER format. Writes to output, and
- returns count of bytes written.
- \return >0 Success, number of bytes written.
- \return BAD_FUNC_ARG Returned if key or output is null.
- \return MEMORY_E Returned when an error allocating memory occurs.
- \return <0 Error
- \param key The RSA key structure to convert.
- \param output Output buffer to hold DER. (if NULL will return length only)
- \param inLen Length of buffer.
- _Example_
- \code
- RsaKey key;
- wc_InitRsaKey(&key, NULL);
- // Use key
- const int BUFFER_SIZE = 1024; // Some adequate size for the buffer
- byte output[BUFFER_SIZE];
- if (wc_RsaKeyToPublicDer(&key, output, sizeof(output)) != 0) {
- // Handle Error
- }
- \endcode
- \sa wc_RsaPublicKeyDerSize
- \sa wc_RsaKeyToPublicDer_ex
- \sa wc_InitRsaKey
- */
- int wc_RsaKeyToPublicDer(RsaKey* key, byte* output, word32 inLen);
- /*!
- \ingroup RSA
- \brief Convert RSA Public key to DER format. Writes to output, and
- returns count of bytes written. If with_header is 0 then only the
- ( seq + n + e) is returned in ASN.1 DER format and will exclude the header.
- \return >0 Success, number of bytes written.
- \return BAD_FUNC_ARG Returned if key or output is null.
- \return MEMORY_E Returned when an error allocating memory occurs.
- \return <0 Error
- \param key The RSA key structure to convert.
- \param output Output buffer to hold DER. (if NULL will return length only)
- \param inLen Length of buffer.
- _Example_
- \code
- RsaKey key;
- wc_InitRsaKey(&key, NULL);
- // Use key
- const int BUFFER_SIZE = 1024; // Some adequate size for the buffer
- byte output[BUFFER_SIZE];
- if (wc_RsaKeyToPublicDer_ex(&key, output, sizeof(output), 0) != 0) {
- // Handle Error
- }
- \endcode
- \sa wc_RsaPublicKeyDerSize
- \sa wc_RsaKeyToPublicDer
- \sa wc_InitRsaKey
- */
- int wc_RsaKeyToPublicDer_ex(RsaKey* key, byte* output, word32 inLen,
- int with_header);
- /*!
- \ingroup RSA
- \brief This function generates a RSA private key of length size (in bits)
- and given exponent (e). It then stores this key in the provided RsaKey
- structure, so that it may be used for encryption/decryption. A secure
- number to use for e is 65537. size is required to be greater than
- RSA_MIN_SIZE and less than RSA_MAX_SIZE. For this function to be
- available, the option WOLFSSL_KEY_GEN must be enabled at compile time.
- This can be accomplished with --enable-keygen if using ./configure.
- \return 0 Returned upon successfully generating a RSA private key
- \return BAD_FUNC_ARG Returned if any of the input arguments are NULL,
- the size parameter falls outside of the necessary bounds, or e is
- incorrectly chosen
- \return RNG_FAILURE_E Returned if there is an error generating a random
- block using the provided RNG structure
- \return MP_INIT_E
- \return MP_READ_E May be May be returned if there is an error in the math
- library used while generating the RSA key returned if there is an error
- in the math library used while generating the RSA key
- \return MP_CMP_E May be returned if there is an error in the math library
- used while generating the RSA key
- \return MP_INVMOD_E May be returned if there is an error in the math
- library used while generating the RSA key
- \return MP_EXPTMOD_E May be returned if there is an error in the math
- library used while generating the RSA key
- \return MP_MOD_E May be returned if there is an error in the math
- library used while generating the RSA key
- \return MP_MUL_E May be returned if there is an error in the math
- library used while generating the RSA key
- \return MP_ADD_E May be returned if there is an error in the math
- library used while generating the RSA key
- \return MP_MULMOD_E May be returned if there is an error in the math
- library used while generating the RSA key
- \return MP_TO_E May be returned if there is an error in the math
- library used while generating the RSA key
- \return MP_MEM May be returned if there is an error in the math
- library used while generating the RSA key
- \return MP_ZERO_E May be returned if there is an error in the math
- library used while generating the RSA key
- \param key pointer to the RsaKey structure in which to store the
- generated private key
- \param size desired key length, in bits. Required to be greater than
- RSA_MIN_SIZE and less than RSA_MAX_SIZE
- \param e exponent parameter to use for generating the key. A secure
- choice is 65537
- \param rng pointer to an RNG structure to use for random number generation
- while making the ke
- _Example_
- \code
- RsaKey priv;
- WC_WC_RNG rng;
- int ret = 0;
- long e = 65537; // standard value to use for exponent
- wc_InitRsaKey(&priv, NULL); // not using heap hint. No custom memory
- wc_InitRng(&rng);
- // generate 2048 bit long private key
- ret = wc_MakeRsaKey(&priv, 2048, e, &rng);
- if( ret != 0 ) {
- // error generating private key
- }
- \endcode
- \sa none
- */
- int wc_MakeRsaKey(RsaKey* key, int size, long e, WC_RNG* rng);
- /*!
- \ingroup RSA
- \brief This function sets the non-blocking RSA context. When a RsaNb context
- is set it enables fast math based non-blocking exptmod, which splits the RSA
- function into many smaller operations.
- Enabled when WC_RSA_NONBLOCK is defined.
- \return 0 Success
- \return BAD_FUNC_ARG Returned if key or nb is null.
- \param key The RSA key structure
- \param nb The RSA non-blocking structure for this RSA key to use.
- _Example_
- \code
- int ret, count = 0;
- RsaKey key;
- RsaNb nb;
- wc_InitRsaKey(&key, NULL);
- // Enable non-blocking RSA mode - provide context
- ret = wc_RsaSetNonBlock(key, &nb);
- if (ret != 0)
- return ret;
- do {
- ret = wc_RsaSSL_Sign(in, inLen, out, outSz, key, rng);
- count++; // track number of would blocks
- if (ret == FP_WOULDBLOCK) {
- // do "other" work here
- }
- } while (ret == FP_WOULDBLOCK);
- if (ret < 0) {
- return ret;
- }
- printf("RSA non-block sign: size %d, %d times\n", ret, count);
- \endcode
- \sa wc_RsaSetNonBlockTime
- */
- int wc_RsaSetNonBlock(RsaKey* key, RsaNb* nb);
- /*!
- \ingroup RSA
- \brief This function configures the maximum amount of blocking time in
- microseconds. It uses a pre-computed table (see tfm.c exptModNbInst) along
- with the CPU speed in megahertz to determine if the next operation can be
- completed within the maximum blocking time provided.
- Enabled when WC_RSA_NONBLOCK_TIME is defined.
- \return 0 Success
- \return BAD_FUNC_ARG Returned if key is null or wc_RsaSetNonBlock was not
- previously called and key->nb is null.
- \param key The RSA key structure.
- \param maxBlockUs Maximum time to block microseconds.
- \param cpuMHz CPU speed in megahertz.
- _Example_
- \code
- RsaKey key;
- RsaNb nb;
- wc_InitRsaKey(&key, NULL);
- wc_RsaSetNonBlock(key, &nb);
- wc_RsaSetNonBlockTime(&key, 4000, 160); // Block Max = 4 ms, CPU = 160MHz
- \endcode
- \sa wc_RsaSetNonBlock
- */
- int wc_RsaSetNonBlockTime(RsaKey* key, word32 maxBlockUs,
- word32 cpuMHz);
|