xref: /freebsd/crypto/openssl/apps/include/apps.h (revision b077aed3)
1*b077aed3SPierre Pronchery /*
2*b077aed3SPierre Pronchery  * Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
3*b077aed3SPierre Pronchery  *
4*b077aed3SPierre Pronchery  * Licensed under the Apache License 2.0 (the "License").  You may not use
5*b077aed3SPierre Pronchery  * this file except in compliance with the License.  You can obtain a copy
6*b077aed3SPierre Pronchery  * in the file LICENSE in the source distribution or at
7*b077aed3SPierre Pronchery  * https://www.openssl.org/source/license.html
8*b077aed3SPierre Pronchery  */
9*b077aed3SPierre Pronchery 
10*b077aed3SPierre Pronchery #ifndef OSSL_APPS_H
11*b077aed3SPierre Pronchery # define OSSL_APPS_H
12*b077aed3SPierre Pronchery 
13*b077aed3SPierre Pronchery # include "e_os.h" /* struct timeval for DTLS */
14*b077aed3SPierre Pronchery # include "internal/nelem.h"
15*b077aed3SPierre Pronchery # include "internal/sockets.h" /* for openssl_fdset() */
16*b077aed3SPierre Pronchery # include "internal/cryptlib.h"  /* ossl_assert() */
17*b077aed3SPierre Pronchery # include <assert.h>
18*b077aed3SPierre Pronchery 
19*b077aed3SPierre Pronchery # include <stdarg.h>
20*b077aed3SPierre Pronchery # include <sys/types.h>
21*b077aed3SPierre Pronchery # ifndef OPENSSL_NO_POSIX_IO
22*b077aed3SPierre Pronchery #  include <sys/stat.h>
23*b077aed3SPierre Pronchery #  include <fcntl.h>
24*b077aed3SPierre Pronchery # endif
25*b077aed3SPierre Pronchery 
26*b077aed3SPierre Pronchery # include <openssl/e_os2.h>
27*b077aed3SPierre Pronchery # include <openssl/types.h>
28*b077aed3SPierre Pronchery # include <openssl/bio.h>
29*b077aed3SPierre Pronchery # include <openssl/x509.h>
30*b077aed3SPierre Pronchery # include <openssl/conf.h>
31*b077aed3SPierre Pronchery # include <openssl/txt_db.h>
32*b077aed3SPierre Pronchery # include <openssl/engine.h>
33*b077aed3SPierre Pronchery # include <openssl/ocsp.h>
34*b077aed3SPierre Pronchery # include <openssl/http.h>
35*b077aed3SPierre Pronchery # include <signal.h>
36*b077aed3SPierre Pronchery # include "apps_ui.h"
37*b077aed3SPierre Pronchery # include "opt.h"
38*b077aed3SPierre Pronchery # include "fmt.h"
39*b077aed3SPierre Pronchery # include "platform.h"
40*b077aed3SPierre Pronchery # include "engine_loader.h"
41*b077aed3SPierre Pronchery # include "app_libctx.h"
42*b077aed3SPierre Pronchery 
43*b077aed3SPierre Pronchery /*
44*b077aed3SPierre Pronchery  * quick macro when you need to pass an unsigned char instead of a char.
45*b077aed3SPierre Pronchery  * this is true for some implementations of the is*() functions, for
46*b077aed3SPierre Pronchery  * example.
47*b077aed3SPierre Pronchery  */
48*b077aed3SPierre Pronchery # define _UC(c) ((unsigned char)(c))
49*b077aed3SPierre Pronchery 
50*b077aed3SPierre Pronchery void app_RAND_load_conf(CONF *c, const char *section);
51*b077aed3SPierre Pronchery int app_RAND_write(void);
52*b077aed3SPierre Pronchery int app_RAND_load(void);
53*b077aed3SPierre Pronchery 
54*b077aed3SPierre Pronchery extern char *default_config_file; /* may be "" */
55*b077aed3SPierre Pronchery extern BIO *bio_in;
56*b077aed3SPierre Pronchery extern BIO *bio_out;
57*b077aed3SPierre Pronchery extern BIO *bio_err;
58*b077aed3SPierre Pronchery extern const unsigned char tls13_aes128gcmsha256_id[];
59*b077aed3SPierre Pronchery extern const unsigned char tls13_aes256gcmsha384_id[];
60*b077aed3SPierre Pronchery extern BIO_ADDR *ourpeer;
61*b077aed3SPierre Pronchery 
62*b077aed3SPierre Pronchery BIO *dup_bio_in(int format);
63*b077aed3SPierre Pronchery BIO *dup_bio_out(int format);
64*b077aed3SPierre Pronchery BIO *dup_bio_err(int format);
65*b077aed3SPierre Pronchery BIO *bio_open_owner(const char *filename, int format, int private);
66*b077aed3SPierre Pronchery BIO *bio_open_default(const char *filename, char mode, int format);
67*b077aed3SPierre Pronchery BIO *bio_open_default_quiet(const char *filename, char mode, int format);
68*b077aed3SPierre Pronchery CONF *app_load_config_bio(BIO *in, const char *filename);
69*b077aed3SPierre Pronchery #define app_load_config(filename) app_load_config_internal(filename, 0)
70*b077aed3SPierre Pronchery #define app_load_config_quiet(filename) app_load_config_internal(filename, 1)
71*b077aed3SPierre Pronchery CONF *app_load_config_internal(const char *filename, int quiet);
72*b077aed3SPierre Pronchery CONF *app_load_config_verbose(const char *filename, int verbose);
73*b077aed3SPierre Pronchery int app_load_modules(const CONF *config);
74*b077aed3SPierre Pronchery CONF *app_load_config_modules(const char *configfile);
75*b077aed3SPierre Pronchery void unbuffer(FILE *fp);
76*b077aed3SPierre Pronchery void wait_for_async(SSL *s);
77*b077aed3SPierre Pronchery # if defined(OPENSSL_SYS_MSDOS)
78*b077aed3SPierre Pronchery int has_stdin_waiting(void);
79*b077aed3SPierre Pronchery # endif
80*b077aed3SPierre Pronchery 
81*b077aed3SPierre Pronchery void corrupt_signature(const ASN1_STRING *signature);
82*b077aed3SPierre Pronchery int set_cert_times(X509 *x, const char *startdate, const char *enddate,
83*b077aed3SPierre Pronchery                    int days);
84*b077aed3SPierre Pronchery int set_crl_lastupdate(X509_CRL *crl, const char *lastupdate);
85*b077aed3SPierre Pronchery int set_crl_nextupdate(X509_CRL *crl, const char *nextupdate,
86*b077aed3SPierre Pronchery                        long days, long hours, long secs);
87*b077aed3SPierre Pronchery 
88*b077aed3SPierre Pronchery typedef struct args_st {
89*b077aed3SPierre Pronchery     int size;
90*b077aed3SPierre Pronchery     int argc;
91*b077aed3SPierre Pronchery     char **argv;
92*b077aed3SPierre Pronchery } ARGS;
93*b077aed3SPierre Pronchery 
94*b077aed3SPierre Pronchery /* We need both wrap and the "real" function because libcrypto uses both. */
95*b077aed3SPierre Pronchery int wrap_password_callback(char *buf, int bufsiz, int verify, void *cb_data);
96*b077aed3SPierre Pronchery 
97*b077aed3SPierre Pronchery int chopup_args(ARGS *arg, char *buf);
98*b077aed3SPierre Pronchery void dump_cert_text(BIO *out, X509 *x);
99*b077aed3SPierre Pronchery void print_name(BIO *out, const char *title, const X509_NAME *nm);
100*b077aed3SPierre Pronchery void print_bignum_var(BIO *, const BIGNUM *, const char*,
101*b077aed3SPierre Pronchery                       int, unsigned char *);
102*b077aed3SPierre Pronchery void print_array(BIO *, const char *, int, const unsigned char *);
103*b077aed3SPierre Pronchery int set_nameopt(const char *arg);
104*b077aed3SPierre Pronchery unsigned long get_nameopt(void);
105*b077aed3SPierre Pronchery int set_dateopt(unsigned long *dateopt, const char *arg);
106*b077aed3SPierre Pronchery int set_cert_ex(unsigned long *flags, const char *arg);
107*b077aed3SPierre Pronchery int set_name_ex(unsigned long *flags, const char *arg);
108*b077aed3SPierre Pronchery int set_ext_copy(int *copy_type, const char *arg);
109*b077aed3SPierre Pronchery int copy_extensions(X509 *x, X509_REQ *req, int copy_type);
110*b077aed3SPierre Pronchery char *get_passwd(const char *pass, const char *desc);
111*b077aed3SPierre Pronchery int app_passwd(const char *arg1, const char *arg2, char **pass1, char **pass2);
112*b077aed3SPierre Pronchery int add_oid_section(CONF *conf);
113*b077aed3SPierre Pronchery X509_REQ *load_csr(const char *file, int format, const char *desc);
114*b077aed3SPierre Pronchery X509 *load_cert_pass(const char *uri, int format, int maybe_stdin,
115*b077aed3SPierre Pronchery                      const char *pass, const char *desc);
116*b077aed3SPierre Pronchery #define load_cert(uri, format, desc) load_cert_pass(uri, format, 1, NULL, desc)
117*b077aed3SPierre Pronchery X509_CRL *load_crl(const char *uri, int format, int maybe_stdin,
118*b077aed3SPierre Pronchery                    const char *desc);
119*b077aed3SPierre Pronchery void cleanse(char *str);
120*b077aed3SPierre Pronchery void clear_free(char *str);
121*b077aed3SPierre Pronchery EVP_PKEY *load_key(const char *uri, int format, int maybe_stdin,
122*b077aed3SPierre Pronchery                    const char *pass, ENGINE *e, const char *desc);
123*b077aed3SPierre Pronchery EVP_PKEY *load_pubkey(const char *uri, int format, int maybe_stdin,
124*b077aed3SPierre Pronchery                       const char *pass, ENGINE *e, const char *desc);
125*b077aed3SPierre Pronchery EVP_PKEY *load_keyparams(const char *uri, int format, int maybe_stdin,
126*b077aed3SPierre Pronchery                          const char *keytype, const char *desc);
127*b077aed3SPierre Pronchery EVP_PKEY *load_keyparams_suppress(const char *uri, int format, int maybe_stdin,
128*b077aed3SPierre Pronchery                                   const char *keytype, const char *desc,
129*b077aed3SPierre Pronchery                                   int suppress_decode_errors);
130*b077aed3SPierre Pronchery char *next_item(char *opt); /* in list separated by comma and/or space */
131*b077aed3SPierre Pronchery int load_cert_certs(const char *uri,
132*b077aed3SPierre Pronchery                     X509 **pcert, STACK_OF(X509) **pcerts,
133*b077aed3SPierre Pronchery                     int exclude_http, const char *pass, const char *desc,
134*b077aed3SPierre Pronchery                     X509_VERIFY_PARAM *vpm);
135*b077aed3SPierre Pronchery STACK_OF(X509) *load_certs_multifile(char *files, const char *pass,
136*b077aed3SPierre Pronchery                                      const char *desc, X509_VERIFY_PARAM *vpm);
137*b077aed3SPierre Pronchery X509_STORE *load_certstore(char *input, const char *pass, const char *desc,
138*b077aed3SPierre Pronchery                            X509_VERIFY_PARAM *vpm);
139*b077aed3SPierre Pronchery int load_certs(const char *uri, int maybe_stdin, STACK_OF(X509) **certs,
140*b077aed3SPierre Pronchery                const char *pass, const char *desc);
141*b077aed3SPierre Pronchery int load_crls(const char *uri, STACK_OF(X509_CRL) **crls,
142*b077aed3SPierre Pronchery               const char *pass, const char *desc);
143*b077aed3SPierre Pronchery int load_key_certs_crls(const char *uri, int format, int maybe_stdin,
144*b077aed3SPierre Pronchery                         const char *pass, const char *desc,
145*b077aed3SPierre Pronchery                         EVP_PKEY **ppkey, EVP_PKEY **ppubkey,
146*b077aed3SPierre Pronchery                         EVP_PKEY **pparams,
147*b077aed3SPierre Pronchery                         X509 **pcert, STACK_OF(X509) **pcerts,
148*b077aed3SPierre Pronchery                         X509_CRL **pcrl, STACK_OF(X509_CRL) **pcrls);
149*b077aed3SPierre Pronchery int load_key_cert_crl(const char *uri, int format, int maybe_stdin,
150*b077aed3SPierre Pronchery                       const char *pass, const char *desc,
151*b077aed3SPierre Pronchery                       EVP_PKEY **ppkey, EVP_PKEY **ppubkey,
152*b077aed3SPierre Pronchery                       X509 **pcert, X509_CRL **pcrl);
153*b077aed3SPierre Pronchery X509_STORE *setup_verify(const char *CAfile, int noCAfile,
154*b077aed3SPierre Pronchery                          const char *CApath, int noCApath,
155*b077aed3SPierre Pronchery                          const char *CAstore, int noCAstore);
156*b077aed3SPierre Pronchery __owur int ctx_set_verify_locations(SSL_CTX *ctx,
157*b077aed3SPierre Pronchery                                     const char *CAfile, int noCAfile,
158*b077aed3SPierre Pronchery                                     const char *CApath, int noCApath,
159*b077aed3SPierre Pronchery                                     const char *CAstore, int noCAstore);
160*b077aed3SPierre Pronchery 
161*b077aed3SPierre Pronchery # ifndef OPENSSL_NO_CT
162*b077aed3SPierre Pronchery 
163*b077aed3SPierre Pronchery /*
164*b077aed3SPierre Pronchery  * Sets the file to load the Certificate Transparency log list from.
165*b077aed3SPierre Pronchery  * If path is NULL, loads from the default file path.
166*b077aed3SPierre Pronchery  * Returns 1 on success, 0 otherwise.
167*b077aed3SPierre Pronchery  */
168*b077aed3SPierre Pronchery __owur int ctx_set_ctlog_list_file(SSL_CTX *ctx, const char *path);
169*b077aed3SPierre Pronchery 
170*b077aed3SPierre Pronchery # endif
171*b077aed3SPierre Pronchery 
172*b077aed3SPierre Pronchery ENGINE *setup_engine_methods(const char *id, unsigned int methods, int debug);
173*b077aed3SPierre Pronchery # define setup_engine(e, debug) setup_engine_methods(e, (unsigned int)-1, debug)
174*b077aed3SPierre Pronchery void release_engine(ENGINE *e);
175*b077aed3SPierre Pronchery int init_engine(ENGINE *e);
176*b077aed3SPierre Pronchery int finish_engine(ENGINE *e);
177*b077aed3SPierre Pronchery char *make_engine_uri(ENGINE *e, const char *key_id, const char *desc);
178*b077aed3SPierre Pronchery 
179*b077aed3SPierre Pronchery int get_legacy_pkey_id(OSSL_LIB_CTX *libctx, const char *algname, ENGINE *e);
180*b077aed3SPierre Pronchery const EVP_MD *get_digest_from_engine(const char *name);
181*b077aed3SPierre Pronchery const EVP_CIPHER *get_cipher_from_engine(const char *name);
182*b077aed3SPierre Pronchery 
183*b077aed3SPierre Pronchery # ifndef OPENSSL_NO_OCSP
184*b077aed3SPierre Pronchery OCSP_RESPONSE *process_responder(OCSP_REQUEST *req, const char *host,
185*b077aed3SPierre Pronchery                                  const char *port, const char *path,
186*b077aed3SPierre Pronchery                                  const char *proxy, const char *no_proxy,
187*b077aed3SPierre Pronchery                                  int use_ssl, STACK_OF(CONF_VALUE) *headers,
188*b077aed3SPierre Pronchery                                  int req_timeout);
189*b077aed3SPierre Pronchery # endif
190*b077aed3SPierre Pronchery 
191*b077aed3SPierre Pronchery /* Functions defined in ca.c and also used in ocsp.c */
192*b077aed3SPierre Pronchery int unpack_revinfo(ASN1_TIME **prevtm, int *preason, ASN1_OBJECT **phold,
193*b077aed3SPierre Pronchery                    ASN1_GENERALIZEDTIME **pinvtm, const char *str);
194*b077aed3SPierre Pronchery 
195*b077aed3SPierre Pronchery # define DB_type         0
196*b077aed3SPierre Pronchery # define DB_exp_date     1
197*b077aed3SPierre Pronchery # define DB_rev_date     2
198*b077aed3SPierre Pronchery # define DB_serial       3      /* index - unique */
199*b077aed3SPierre Pronchery # define DB_file         4
200*b077aed3SPierre Pronchery # define DB_name         5      /* index - unique when active and not
201*b077aed3SPierre Pronchery                                  * disabled */
202*b077aed3SPierre Pronchery # define DB_NUMBER       6
203*b077aed3SPierre Pronchery 
204*b077aed3SPierre Pronchery # define DB_TYPE_REV     'R'    /* Revoked  */
205*b077aed3SPierre Pronchery # define DB_TYPE_EXP     'E'    /* Expired  */
206*b077aed3SPierre Pronchery # define DB_TYPE_VAL     'V'    /* Valid ; inserted with: ca ... -valid */
207*b077aed3SPierre Pronchery # define DB_TYPE_SUSP    'S'    /* Suspended  */
208*b077aed3SPierre Pronchery 
209*b077aed3SPierre Pronchery typedef struct db_attr_st {
210*b077aed3SPierre Pronchery     int unique_subject;
211*b077aed3SPierre Pronchery } DB_ATTR;
212*b077aed3SPierre Pronchery typedef struct ca_db_st {
213*b077aed3SPierre Pronchery     DB_ATTR attributes;
214*b077aed3SPierre Pronchery     TXT_DB *db;
215*b077aed3SPierre Pronchery     char *dbfname;
216*b077aed3SPierre Pronchery # ifndef OPENSSL_NO_POSIX_IO
217*b077aed3SPierre Pronchery     struct stat dbst;
218*b077aed3SPierre Pronchery # endif
219*b077aed3SPierre Pronchery } CA_DB;
220*b077aed3SPierre Pronchery 
221*b077aed3SPierre Pronchery void app_bail_out(char *fmt, ...);
222*b077aed3SPierre Pronchery void *app_malloc(size_t sz, const char *what);
223*b077aed3SPierre Pronchery 
224*b077aed3SPierre Pronchery /* load_serial, save_serial, and rotate_serial are also used for CRL numbers */
225*b077aed3SPierre Pronchery BIGNUM *load_serial(const char *serialfile, int *exists, int create,
226*b077aed3SPierre Pronchery                     ASN1_INTEGER **retai);
227*b077aed3SPierre Pronchery int save_serial(const char *serialfile, const char *suffix,
228*b077aed3SPierre Pronchery                 const BIGNUM *serial, ASN1_INTEGER **retai);
229*b077aed3SPierre Pronchery int rotate_serial(const char *serialfile, const char *new_suffix,
230*b077aed3SPierre Pronchery                   const char *old_suffix);
231*b077aed3SPierre Pronchery int rand_serial(BIGNUM *b, ASN1_INTEGER *ai);
232*b077aed3SPierre Pronchery 
233*b077aed3SPierre Pronchery CA_DB *load_index(const char *dbfile, DB_ATTR *dbattr);
234*b077aed3SPierre Pronchery int index_index(CA_DB *db);
235*b077aed3SPierre Pronchery int save_index(const char *dbfile, const char *suffix, CA_DB *db);
236*b077aed3SPierre Pronchery int rotate_index(const char *dbfile, const char *new_suffix,
237*b077aed3SPierre Pronchery                  const char *old_suffix);
238*b077aed3SPierre Pronchery void free_index(CA_DB *db);
239*b077aed3SPierre Pronchery # define index_name_cmp_noconst(a, b) \
240*b077aed3SPierre Pronchery         index_name_cmp((const OPENSSL_CSTRING *)CHECKED_PTR_OF(OPENSSL_STRING, a), \
241*b077aed3SPierre Pronchery         (const OPENSSL_CSTRING *)CHECKED_PTR_OF(OPENSSL_STRING, b))
242*b077aed3SPierre Pronchery int index_name_cmp(const OPENSSL_CSTRING *a, const OPENSSL_CSTRING *b);
243*b077aed3SPierre Pronchery int parse_yesno(const char *str, int def);
244*b077aed3SPierre Pronchery 
245*b077aed3SPierre Pronchery X509_NAME *parse_name(const char *str, int chtype, int multirdn,
246*b077aed3SPierre Pronchery                       const char *desc);
247*b077aed3SPierre Pronchery void policies_print(X509_STORE_CTX *ctx);
248*b077aed3SPierre Pronchery int bio_to_mem(unsigned char **out, int maxlen, BIO *in);
249*b077aed3SPierre Pronchery int pkey_ctrl_string(EVP_PKEY_CTX *ctx, const char *value);
250*b077aed3SPierre Pronchery int x509_ctrl_string(X509 *x, const char *value);
251*b077aed3SPierre Pronchery int x509_req_ctrl_string(X509_REQ *x, const char *value);
252*b077aed3SPierre Pronchery int init_gen_str(EVP_PKEY_CTX **pctx,
253*b077aed3SPierre Pronchery                  const char *algname, ENGINE *e, int do_param,
254*b077aed3SPierre Pronchery                  OSSL_LIB_CTX *libctx, const char *propq);
255*b077aed3SPierre Pronchery int do_X509_sign(X509 *x, EVP_PKEY *pkey, const char *md,
256*b077aed3SPierre Pronchery                  STACK_OF(OPENSSL_STRING) *sigopts, X509V3_CTX *ext_ctx);
257*b077aed3SPierre Pronchery int do_X509_verify(X509 *x, EVP_PKEY *pkey, STACK_OF(OPENSSL_STRING) *vfyopts);
258*b077aed3SPierre Pronchery int do_X509_REQ_sign(X509_REQ *x, EVP_PKEY *pkey, const char *md,
259*b077aed3SPierre Pronchery                      STACK_OF(OPENSSL_STRING) *sigopts);
260*b077aed3SPierre Pronchery int do_X509_REQ_verify(X509_REQ *x, EVP_PKEY *pkey,
261*b077aed3SPierre Pronchery                        STACK_OF(OPENSSL_STRING) *vfyopts);
262*b077aed3SPierre Pronchery int do_X509_CRL_sign(X509_CRL *x, EVP_PKEY *pkey, const char *md,
263*b077aed3SPierre Pronchery                      STACK_OF(OPENSSL_STRING) *sigopts);
264*b077aed3SPierre Pronchery 
265*b077aed3SPierre Pronchery extern char *psk_key;
266*b077aed3SPierre Pronchery 
267*b077aed3SPierre Pronchery 
268*b077aed3SPierre Pronchery unsigned char *next_protos_parse(size_t *outlen, const char *in);
269*b077aed3SPierre Pronchery 
270*b077aed3SPierre Pronchery void print_cert_checks(BIO *bio, X509 *x,
271*b077aed3SPierre Pronchery                        const char *checkhost,
272*b077aed3SPierre Pronchery                        const char *checkemail, const char *checkip);
273*b077aed3SPierre Pronchery 
274*b077aed3SPierre Pronchery void store_setup_crl_download(X509_STORE *st);
275*b077aed3SPierre Pronchery 
276*b077aed3SPierre Pronchery typedef struct app_http_tls_info_st {
277*b077aed3SPierre Pronchery     const char *server;
278*b077aed3SPierre Pronchery     const char *port;
279*b077aed3SPierre Pronchery     int use_proxy;
280*b077aed3SPierre Pronchery     long timeout;
281*b077aed3SPierre Pronchery     SSL_CTX *ssl_ctx;
282*b077aed3SPierre Pronchery } APP_HTTP_TLS_INFO;
283*b077aed3SPierre Pronchery BIO *app_http_tls_cb(BIO *hbio, /* APP_HTTP_TLS_INFO */ void *arg,
284*b077aed3SPierre Pronchery                      int connect, int detail);
285*b077aed3SPierre Pronchery void APP_HTTP_TLS_INFO_free(APP_HTTP_TLS_INFO *info);
286*b077aed3SPierre Pronchery # ifndef OPENSSL_NO_SOCK
287*b077aed3SPierre Pronchery ASN1_VALUE *app_http_get_asn1(const char *url, const char *proxy,
288*b077aed3SPierre Pronchery                               const char *no_proxy, SSL_CTX *ssl_ctx,
289*b077aed3SPierre Pronchery                               const STACK_OF(CONF_VALUE) *headers,
290*b077aed3SPierre Pronchery                               long timeout, const char *expected_content_type,
291*b077aed3SPierre Pronchery                               const ASN1_ITEM *it);
292*b077aed3SPierre Pronchery ASN1_VALUE *app_http_post_asn1(const char *host, const char *port,
293*b077aed3SPierre Pronchery                                const char *path, const char *proxy,
294*b077aed3SPierre Pronchery                                const char *no_proxy, SSL_CTX *ctx,
295*b077aed3SPierre Pronchery                                const STACK_OF(CONF_VALUE) *headers,
296*b077aed3SPierre Pronchery                                const char *content_type,
297*b077aed3SPierre Pronchery                                ASN1_VALUE *req, const ASN1_ITEM *req_it,
298*b077aed3SPierre Pronchery                                const char *expected_content_type,
299*b077aed3SPierre Pronchery                                long timeout, const ASN1_ITEM *rsp_it);
300*b077aed3SPierre Pronchery # endif
301*b077aed3SPierre Pronchery 
302*b077aed3SPierre Pronchery # define EXT_COPY_NONE   0
303*b077aed3SPierre Pronchery # define EXT_COPY_ADD    1
304*b077aed3SPierre Pronchery # define EXT_COPY_ALL    2
305*b077aed3SPierre Pronchery 
306*b077aed3SPierre Pronchery # define NETSCAPE_CERT_HDR       "certificate"
307*b077aed3SPierre Pronchery 
308*b077aed3SPierre Pronchery # define APP_PASS_LEN    1024
309*b077aed3SPierre Pronchery 
310*b077aed3SPierre Pronchery /*
311*b077aed3SPierre Pronchery  * IETF RFC 5280 says serial number must be <= 20 bytes. Use 159 bits
312*b077aed3SPierre Pronchery  * so that the first bit will never be one, so that the DER encoding
313*b077aed3SPierre Pronchery  * rules won't force a leading octet.
314*b077aed3SPierre Pronchery  */
315*b077aed3SPierre Pronchery # define SERIAL_RAND_BITS        159
316*b077aed3SPierre Pronchery 
317*b077aed3SPierre Pronchery int app_isdir(const char *);
318*b077aed3SPierre Pronchery int app_access(const char *, int flag);
319*b077aed3SPierre Pronchery int fileno_stdin(void);
320*b077aed3SPierre Pronchery int fileno_stdout(void);
321*b077aed3SPierre Pronchery int raw_read_stdin(void *, int);
322*b077aed3SPierre Pronchery int raw_write_stdout(const void *, int);
323*b077aed3SPierre Pronchery 
324*b077aed3SPierre Pronchery # define TM_START        0
325*b077aed3SPierre Pronchery # define TM_STOP         1
326*b077aed3SPierre Pronchery double app_tminterval(int stop, int usertime);
327*b077aed3SPierre Pronchery 
328*b077aed3SPierre Pronchery void make_uppercase(char *string);
329*b077aed3SPierre Pronchery 
330*b077aed3SPierre Pronchery typedef struct verify_options_st {
331*b077aed3SPierre Pronchery     int depth;
332*b077aed3SPierre Pronchery     int quiet;
333*b077aed3SPierre Pronchery     int error;
334*b077aed3SPierre Pronchery     int return_error;
335*b077aed3SPierre Pronchery } VERIFY_CB_ARGS;
336*b077aed3SPierre Pronchery 
337*b077aed3SPierre Pronchery extern VERIFY_CB_ARGS verify_args;
338*b077aed3SPierre Pronchery 
339*b077aed3SPierre Pronchery OSSL_PARAM *app_params_new_from_opts(STACK_OF(OPENSSL_STRING) *opts,
340*b077aed3SPierre Pronchery                                      const OSSL_PARAM *paramdefs);
341*b077aed3SPierre Pronchery void app_params_free(OSSL_PARAM *params);
342*b077aed3SPierre Pronchery int app_provider_load(OSSL_LIB_CTX *libctx, const char *provider_name);
343*b077aed3SPierre Pronchery void app_providers_cleanup(void);
344*b077aed3SPierre Pronchery 
345*b077aed3SPierre Pronchery EVP_PKEY *app_keygen(EVP_PKEY_CTX *ctx, const char *alg, int bits, int verbose);
346*b077aed3SPierre Pronchery EVP_PKEY *app_paramgen(EVP_PKEY_CTX *ctx, const char *alg);
347*b077aed3SPierre Pronchery 
348*b077aed3SPierre Pronchery #endif
349