Searched refs:rsa_out (Results 1 – 1 of 1) sorted by relevance
/external/openssl/apps/ |
D | rsautl.c | 101 unsigned char *rsa_in = NULL, *rsa_out = NULL, pad; in MAIN() local 261 rsa_out = OPENSSL_malloc(keysize); in MAIN() 281 rsa_outlen = RSA_public_decrypt(rsa_inlen, rsa_in, rsa_out, rsa, pad); in MAIN() 285 rsa_outlen = RSA_private_encrypt(rsa_inlen, rsa_in, rsa_out, rsa, pad); in MAIN() 289 rsa_outlen = RSA_public_encrypt(rsa_inlen, rsa_in, rsa_out, rsa, pad); in MAIN() 293 rsa_outlen = RSA_private_decrypt(rsa_inlen, rsa_in, rsa_out, rsa, pad); in MAIN() 305 if(!ASN1_parse_dump(out, rsa_out, rsa_outlen, 1, -1)) { in MAIN() 308 } else if(hexdump) BIO_dump(out, (char *)rsa_out, rsa_outlen); in MAIN() 309 else BIO_write(out, rsa_out, rsa_outlen); in MAIN() 315 if(rsa_out) OPENSSL_free(rsa_out); in MAIN()
|