summaryrefslogtreecommitdiffstats
path: root/apps/apps.h
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2010-03-12 14:41:00 +0000
committerDr. Stephen Henson <steve@openssl.org>2010-03-12 14:41:00 +0000
commitcdb182b55a15cd096475a1b65b40daeaa5aa91c6 (patch)
tree9ab2c59ad492093da329264a7d96c7bd2c940747 /apps/apps.h
parent00947cea0cb1eec869f514e7f8474e8e3baeb0f2 (diff)
new sigopt and PSS support for req and x509 utilities
Diffstat (limited to 'apps/apps.h')
-rw-r--r--apps/apps.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/apps.h b/apps/apps.h
index 596a39aceb..adfaa29f97 100644
--- a/apps/apps.h
+++ b/apps/apps.h
@@ -317,6 +317,10 @@ int bio_to_mem(unsigned char **out, int maxlen, BIO *in);
int pkey_ctrl_string(EVP_PKEY_CTX *ctx, char *value);
int init_gen_str(BIO *err, EVP_PKEY_CTX **pctx,
const char *algname, ENGINE *e, int do_param);
+int do_X509_sign(BIO *err, X509 *x, EVP_PKEY *pkey, const EVP_MD *md,
+ STACK_OF(OPENSSL_STRING) *sigopts);
+int do_X509_REQ_sign(BIO *err, X509_REQ *x, EVP_PKEY *pkey, const EVP_MD *md,
+ STACK_OF(OPENSSL_STRING) *sigopts);
#ifndef OPENSSL_NO_PSK
extern char *psk_key;
#endif