Lines Matching defs:num
151 const unsigned char *from, int flen, int num,
154 return RSA_padding_check_PKCS1_OAEP_mgf1(to, tlen, from, flen, num,
160 int num, const unsigned char *param,
168 * |em| is the encoded message, zero-padded to exactly |num| bytes: em =
192 * |num| is the length of the modulus; |flen| is the length of the
194 * decrypting a ciphertext, we must have |flen| <= |num|. Similarly,
195 * |num| >= 2 * |mdlen| + 2 must hold for the modulus irrespective of
199 if (num < flen || num < 2 * mdlen + 2) {
204 dblen = num - mdlen - 1;
211 em = OPENSSL_malloc(num);
223 for (from += flen, em += num, i = 0; i < num; i++) {
320 OPENSSL_clear_free(em, num);