Lines Matching defs:out
34 unsigned char *out, size_t *poutlen,
40 unsigned char **out, size_t *poutlen);
83 {"out", OPT_OUT, '>', "Output file - default stdout"},
106 BIO *in = NULL, *out = NULL;
234 BIO_puts(bio_err, "out of memory\n");
242 BIO_puts(bio_err, "out of memory\n");
301 BIO_printf(bio_err, "Error: out of memory\n");
356 BIO_puts(bio_err, "out of memory\n");
402 out = bio_open_default(outfile, 'w', FORMAT_BINARY);
403 if (out == NULL)
460 BIO_puts(out, "Signature Verified Successfully\n");
463 BIO_puts(out, "Signature Verification Failure\n");
497 if (!ASN1_parse_dump(out, buf_out, buf_outlen, 1, -1))
500 BIO_dump(out, (char *)buf_out, buf_outlen);
502 BIO_write(out, buf_out, buf_outlen);
513 BIO_free_all(out);
682 unsigned char *out, size_t *poutlen,
688 rv = EVP_PKEY_verify_recover(ctx, out, poutlen, in, inlen);
692 rv = EVP_PKEY_sign(ctx, out, poutlen, in, inlen);
696 rv = EVP_PKEY_encrypt(ctx, out, poutlen, in, inlen);
700 rv = EVP_PKEY_decrypt(ctx, out, poutlen, in, inlen);
704 rv = EVP_PKEY_derive(ctx, out, poutlen);
716 unsigned char **out, size_t *poutlen)
748 if (rv == 1 && out != NULL) {
749 *out = app_malloc(*poutlen, "buffer output");
750 rv = EVP_DigestSign(mctx, *out, poutlen, mbuf, buf_len);
791 if (rv == 1 && out != NULL) {
792 *out = app_malloc(*poutlen, "buffer output");
793 rv = EVP_DigestSignFinal(mctx, *out, poutlen);