Home | History | Annotate | Download | only in apps

Lines Matching defs:out

48  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
83 unsigned char *out, size_t *poutlen,
90 BIO *in = NULL, *out = NULL;
124 else if (!strcmp(*argv,"-out"))
271 if(!(out = BIO_new_file(outfile, "wb")))
280 out = BIO_new_fp(stdout, BIO_NOCLOSE);
284 out = BIO_push(tmpbio, out);
335 BIO_puts(out, "Signature Verification Failure\n");
337 BIO_puts(out, "Signature Verified Successfully\n");
366 if(!ASN1_parse_dump(out, buf_out, buf_outlen, 1, -1))
370 BIO_dump(out, (char *)buf_out, buf_outlen);
372 BIO_write(out, buf_out, buf_outlen);
378 BIO_free_all(out);
392 BIO_printf(bio_err, "-out file output file\n");
542 unsigned char *out, size_t *poutlen,
549 rv = EVP_PKEY_verify_recover(ctx, out, poutlen, in, inlen);
553 rv = EVP_PKEY_sign(ctx, out, poutlen, in, inlen);
557 rv = EVP_PKEY_encrypt(ctx, out, poutlen, in, inlen);
561 rv = EVP_PKEY_decrypt(ctx, out, poutlen, in, inlen);
565 rv = EVP_PKEY_derive(ctx, out, poutlen);