* Fix an error in compilation when Alpine is not built with S/MIME
[alpine.git] / pith / smime.h
blob01e4cdc0af8babc64672d4e6dc62d0af0f279be9
1 /*
2 * $Id: smime.h 1074 2008-06-04 00:08:43Z hubert@u.washington.edu $
4 * ========================================================================
5 * Copyright 2013-2016 Eduardo Chappa
6 * Copyright 2008 University of Washington
8 * Licensed under the Apache License, Version 2.0 (the "License");
9 * you may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
12 * http://www.apache.org/licenses/LICENSE-2.0
14 * ========================================================================
17 #ifdef SMIME
18 #ifndef PITH_SMIME_INCLUDED
19 #define PITH_SMIME_INCLUDED
22 #include "../pith/state.h"
23 #include "../pith/send.h"
24 #include "../pith/filttype.h"
25 #include "../pith/smkeys.h"
27 #include <openssl/rand.h>
28 #include <openssl/err.h>
30 #ifdef PASSFILE
31 #define DF_PASSWORD_DIR ".alpine-smime/.pwd"
32 #endif
34 #define OUR_PKCS7_ENCLOSURE_SUBTYPE "x-pkcs7-enclosure"
37 typedef enum {P7Type, CharType, SizedText} SpareType;
39 typedef struct smime_sparep_t {
40 SpareType sptype;
41 void *data;
42 } SMIME_SPARE_S;
45 /* exported protoypes */
46 int smime_validate_cert(X509 *cert, long *error);
47 int encrypt_file(char *fp, char *text, PERSONAL_CERT *pc);
48 char *decrypt_file(char *fp, int *rv, PERSONAL_CERT *pc);
49 int is_pkcs7_body(BODY *b);
50 int fiddle_smime_message(BODY *b, long msgno);
51 int encrypt_outgoing_message(METAENV *header, BODY **bodyP);
52 void free_smime_body_sparep(void **sparep);
53 int sign_outgoing_message(METAENV *header, BODY **bodyP, int dont_detach, BODY **bp);
54 void gf_puts_uline(char *txt, gf_io_t pc);
55 PERSONAL_CERT *find_certificate_matching_recip_info(PKCS7_RECIP_INFO *ri);
56 PERSONAL_CERT *get_personal_certs(char *path);
57 void smime_init(void);
58 void smime_deinit(void);
59 void smime_reinit(void);
60 void renew_store(void);
61 void renew_cert_data(CertList **data, WhichCerts ctype);
62 BIO *print_private_key_information(char *email, int itype);
64 SMIME_STUFF_S *new_smime_struct(void);
65 int copy_publiccert_dir_to_container(void);
66 int copy_publiccert_container_to_dir(void);
67 int copy_privatecert_dir_to_container(void);
68 int copy_privatecert_container_to_dir(void);
69 int copy_cacert_dir_to_container(void);
70 int copy_cacert_container_to_dir(void);
71 int import_certificate(WhichCerts);
72 int copy_dir_to_container(WhichCerts which, char *contents);
73 #ifdef APPLEKEYCHAIN
74 int copy_publiccert_container_to_keychain(void);
75 int copy_publiccert_keychain_to_container(void);
76 #endif /* APPLEKEYCHAIN */
77 #ifdef PASSFILE
78 void setup_pwdcert(void **pwdcert);
79 #endif /* PASSFILE */
80 void mark_cert_deleted(WhichCerts ctype, int num, unsigned state);
81 unsigned get_cert_deleted(WhichCerts ctype, int num);
82 int smime_expunge_cert(WhichCerts ctype);
83 int add_file_to_container(WhichCerts ctype, char *fpath, char *altname);
84 void *create_smime_sparep(SpareType stype, void *s);
85 SpareType get_smime_sparep_type(void *s);
86 void *get_smime_sparep_data(void *s);
87 STACK_OF(X509) *get_chain_for_cert(X509 *cert, int *error, int *level);
88 CertList *certlist_from_personal_certs(PERSONAL_CERT *pc);
89 int smime_path(char *rpath, char *fpath, size_t len);
91 #endif /* PITH_SMIME_INCLUDED */
92 #endif /* SMIME */