diff options
Diffstat (limited to 'src/lib/libssl/src/apps/apps.h')
-rw-r--r-- | src/lib/libssl/src/apps/apps.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/lib/libssl/src/apps/apps.h b/src/lib/libssl/src/apps/apps.h index 9a5b77f807..a79bdc9436 100644 --- a/src/lib/libssl/src/apps/apps.h +++ b/src/lib/libssl/src/apps/apps.h | |||
@@ -181,9 +181,7 @@ typedef struct pw_cb_data { | |||
181 | const char *prompt_info; | 181 | const char *prompt_info; |
182 | } PW_CB_DATA; | 182 | } PW_CB_DATA; |
183 | 183 | ||
184 | int | 184 | int password_callback(char *buf, int bufsiz, int verify, PW_CB_DATA *cb_data); |
185 | password_callback(char *buf, int bufsiz, int verify, | ||
186 | PW_CB_DATA *cb_data); | ||
187 | 185 | ||
188 | int setup_ui_method(void); | 186 | int setup_ui_method(void); |
189 | void destroy_ui_method(void); | 187 | void destroy_ui_method(void); |
@@ -195,7 +193,8 @@ void program_name(char *in, char *out, int size); | |||
195 | int chopup_args(ARGS *arg, char *buf, int *argc, char **argv[]); | 193 | int chopup_args(ARGS *arg, char *buf, int *argc, char **argv[]); |
196 | #ifdef HEADER_X509_H | 194 | #ifdef HEADER_X509_H |
197 | int dump_cert_text(BIO *out, X509 *x); | 195 | int dump_cert_text(BIO *out, X509 *x); |
198 | void print_name(BIO *out, const char *title, X509_NAME *nm, unsigned long lflags); | 196 | void print_name(BIO *out, const char *title, X509_NAME *nm, |
197 | unsigned long lflags); | ||
199 | #endif | 198 | #endif |
200 | int set_cert_ex(unsigned long *flags, const char *arg); | 199 | int set_cert_ex(unsigned long *flags, const char *arg); |
201 | int set_name_ex(unsigned long *flags, const char *arg); | 200 | int set_name_ex(unsigned long *flags, const char *arg); |
@@ -252,13 +251,15 @@ typedef struct ca_db_st { | |||
252 | } CA_DB; | 251 | } CA_DB; |
253 | 252 | ||
254 | BIGNUM *load_serial(char *serialfile, int create, ASN1_INTEGER **retai); | 253 | BIGNUM *load_serial(char *serialfile, int create, ASN1_INTEGER **retai); |
255 | int save_serial(char *serialfile, char *suffix, BIGNUM *serial, ASN1_INTEGER **retai); | 254 | int save_serial(char *serialfile, char *suffix, BIGNUM *serial, |
255 | ASN1_INTEGER **retai); | ||
256 | int rotate_serial(char *serialfile, char *new_suffix, char *old_suffix); | 256 | int rotate_serial(char *serialfile, char *new_suffix, char *old_suffix); |
257 | int rand_serial(BIGNUM *b, ASN1_INTEGER *ai); | 257 | int rand_serial(BIGNUM *b, ASN1_INTEGER *ai); |
258 | CA_DB *load_index(char *dbfile, DB_ATTR *dbattr); | 258 | CA_DB *load_index(char *dbfile, DB_ATTR *dbattr); |
259 | int index_index(CA_DB *db); | 259 | int index_index(CA_DB *db); |
260 | int save_index(const char *dbfile, const char *suffix, CA_DB *db); | 260 | int save_index(const char *dbfile, const char *suffix, CA_DB *db); |
261 | int rotate_index(const char *dbfile, const char *new_suffix, const char *old_suffix); | 261 | int rotate_index(const char *dbfile, const char *new_suffix, |
262 | const char *old_suffix); | ||
262 | void free_index(CA_DB *db); | 263 | void free_index(CA_DB *db); |
263 | #define index_name_cmp_noconst(a, b) \ | 264 | #define index_name_cmp_noconst(a, b) \ |
264 | index_name_cmp((const OPENSSL_CSTRING *)CHECKED_PTR_OF(OPENSSL_STRING, a), \ | 265 | index_name_cmp((const OPENSSL_CSTRING *)CHECKED_PTR_OF(OPENSSL_STRING, a), \ |