Searched refs:rsa_outlen (Results 1 - 1 of 1) sorted by relevance

/freebsd-10.0-release/crypto/openssl/apps/
H A Drsautl.c103 int rsa_inlen, rsa_outlen = 0; local
281 rsa_outlen = RSA_public_decrypt(rsa_inlen, rsa_in, rsa_out, rsa, pad);
285 rsa_outlen = RSA_private_encrypt(rsa_inlen, rsa_in, rsa_out, rsa, pad);
289 rsa_outlen = RSA_public_encrypt(rsa_inlen, rsa_in, rsa_out, rsa, pad);
293 rsa_outlen = RSA_private_decrypt(rsa_inlen, rsa_in, rsa_out, rsa, pad);
298 if(rsa_outlen <= 0) {
305 if(!ASN1_parse_dump(out, rsa_out, rsa_outlen, 1, -1)) {
308 } else if(hexdump) BIO_dump(out, (char *)rsa_out, rsa_outlen);
309 else BIO_write(out, rsa_out, rsa_outlen);

Completed in 107 milliseconds