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

/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/apps/
H A Drsautl.c101 unsigned char *rsa_in = NULL, *rsa_out = NULL, pad; local
261 rsa_out = OPENSSL_malloc(keysize);
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);
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);
315 if(rsa_out) OPENSSL_fre
[all...]

Completed in 150 milliseconds