Lines Matching defs:flen
21 static int rsa_ossl_public_encrypt(int flen, const unsigned char *from,
23 static int rsa_ossl_private_encrypt(int flen, const unsigned char *from,
25 static int rsa_ossl_public_decrypt(int flen, const unsigned char *from,
27 static int rsa_ossl_private_decrypt(int flen, const unsigned char *from,
74 static int rsa_ossl_public_encrypt(int flen, const unsigned char *from,
115 from, flen);
119 from, flen, NULL, 0,
123 i = RSA_padding_add_none(buf, num, from, flen);
242 static int rsa_ossl_private_encrypt(int flen, const unsigned char *from,
272 i = RSA_padding_add_PKCS1_type_1(buf, num, from, flen);
275 i = RSA_padding_add_X931(buf, num, from, flen);
278 i = RSA_padding_add_none(buf, num, from, flen);
374 static int rsa_ossl_private_decrypt(int flen, const unsigned char *from,
406 if (flen > num) {
412 if (BN_bin2bn(from, (int)flen, f) == NULL)
511 static int rsa_ossl_public_decrypt(int flen, const unsigned char *from,
553 if (flen > num) {
558 if (BN_bin2bn(from, flen, f) == NULL)