.. _rsa_mb_verify_pkcs1v15_rmf: RSA_MB_Verify_PKCS1v15_rmf ========================== Performs RSA multi-buffer signature verification using PKCS#1 v1.5 scheme. Syntax ------ .. note:: This API is deprecated from Intel® IPP Cryptography and is removed since 2021.2 release. It is recommended to switch to `Crypto MB `__ library. If you have any concerns, open a ticket and provide feedback at `Intel ® online support center `__. IppStatus ippsRSA_MB_Verify_PKCS1v15_rmf(const Ipp8u\*pMsgs[8],const intmsgLens[8],const Ipp8u\*pSignts[8],intpIsValid[8], const IppsRSAPublicKeyState\*pPubKeys[8], const IppsHashMethod\*pMethod, IppStatusstatuses[8], Ipp8u\*pBuffer); Include Files ------------- ``ippcp.h`` Parameters ---------- .. list-table:: :header-rows: 0 * - pMsgs[8] - Pointer to the array of messages that have been signed. * - msgLens[8] - Pointer to the array of messages lengths. * - pSignts[8] - Pointer to the array of signatures to be verified. * - pIsValid - Pointer to the array of verification results. * - pPubKeys[8] - Pointer to the array of preliminary initialized IppsRSAPublicKeyState contexts. * - pMethod - Pointer to the hash method. For details, see `HashMethod `__ functions. * - statuses[8] - Pointer to the array of execution statuses for each performed operation. * - pBuffer - Pointer to a temporary buffer. The size of the buffer must be not less than the value returned by the `RSA_MB_GetBufferSizePublicKey `__ function. Description ----------- This function verifies the signature generated using PKCS#1 v1.5 scheme that uses the same pMethod parameter against the input message, as defined in [ `PKCS 1.2.1 `__ ]. The function can perform up to 8 verification operations at once. Specify parameters for each single signature verification operation under the corresponding index in an input array in accordance with the `ippsRSAVerify_PKCS1v15_rmf `__ function API requirements. To perform less than 8 operations, set one or more pointers to a context in input context arrays to NULL. In this case, each single operation with the context set to NULL will not be performed, and the function will return ippStsMbWarning . Once the function execution is completed, the statuses array will contain return codes for each single signature verification operation according to the `ippsRSAVerify_PKCS1v15_rmf `__ return values. .. note:: .. rubric:: Important :class: NoteTipHead - Sizes of all moduli ``n`` in all IppsRSAPublicKeyState contexts in the pPubKeys array must be equal. - Sizes and values of all public exponents ``e`` in all IppsRSAPublicKeyState contexts in the pPubKeys array must be equal. Return Values ------------- .. list-table:: :header-rows: 0 * - ippStsNoErr - Indicates no error. All single operations executed without errors. Any other value indicates an error or warning. * - ippStsMbWarning - One or more of performed operations executed with error. Check statuses array for details. * - ippStsNullPtrErr - Any of the input parameters is a NULL pointer. * - ippStsSizeErr - Indicates a mismatch between moduli ``n`` sizes in the input contexts. * - ippStsBadArgErr - Indicates a mismatch between exponents ``e`` in public keys. * - ippStsContextMatchErr - No valid keys were found. .. rubric:: Related Information * :ref:`rsa_setpublickey-rsa_setprivatekeytype1-rsa_setprivatekeytype2` * :ref:`rsa_mb_sign_pkcs1v15_rmf`