Lines Matching refs:cOutSize
20613 807 UINT32 cOutSize; // Conversion variable
20634 828 cOutSize = *cipherOutSize;
20654 843 retVal = _cpri__EncryptRSA(&cOutSize,cipherOut, &key, scheme->scheme,
20657 846 pAssert (cOutSize <= UINT16_MAX);
20658 847 *cipherOutSize = (UINT16)cOutSize;
29899 The cOutSize parameter must be at least as large as the size of the key.
29919 CRYPT_PARAMETER cOutSize is too small (must be the size of the modulus)
29924 808 UINT32 *cOutSize, // OUT: the size of the encrypted data
29936 820 pAssert(cOutSize != NULL);
29939 823 if(*cOutSize < key->publicKey->size)
29941 825 *cOutSize = key->publicKey->size;
29949 833 for(; dInSize > *cOutSize; dInSize--)
29956 840 if(dInSize < *cOutSize)
29957 841 memset(cOut, 0, *cOutSize - dInSize);
29960 844 memcpy(&cOut[*cOutSize-dInSize], dIn, dInSize);
29966 850 retVal = RSAES_PKSC1v1_5Encode(*cOutSize, cOut, dInSize, dIn);
29969 853 retVal = OaepEncode(*cOutSize, cOut, hashAlg, label, dInSize, dIn
29989 868 return RSAEP(*cOutSize, cOut, key);