* New version 2.21.999
[alpine.git] / pith / smime.h
blob0615ef1b6705616b9018d8bbdb8f3b1954fec287
1 /*
2 * $Id: smime.h 1074 2008-06-04 00:08:43Z hubert@u.washington.edu $
4 * ========================================================================
5 * Copyright 2013-2018 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/x509.h>
28 #include <openssl/rand.h>
29 #include <openssl/err.h>
31 #ifdef PASSFILE
32 #define DF_PASSWORD_DIR ".alpine-smime/.pwd"
33 #endif
34 #define DF_SMIMETMPDIR ".alpine-smime/smtmp"
36 #define OUR_PKCS7_ENCLOSURE_SUBTYPE "x-pkcs7-enclosure"
39 /* exported protoypes */
40 int smime_validate_cert(X509 *cert, long *error);
41 int encrypt_file(char *fp, char *text, PERSONAL_CERT *pc);
42 char *decrypt_file(char *fp, int *rv, PERSONAL_CERT *pc);
43 int is_pkcs7_body(BODY *b);
44 int fiddle_smime_message(BODY *b, long msgno);
45 int encrypt_outgoing_message(METAENV *header, BODY **bodyP);
46 int sign_outgoing_message(METAENV *header, BODY **bodyP, int dont_detach, BODY **bp);
47 void gf_puts_uline(char *txt, gf_io_t pc);
48 PERSONAL_CERT *find_certificate_matching_recip_info(PKCS7_RECIP_INFO *ri);
49 PERSONAL_CERT *get_personal_certs(char *path);
50 void smime_init(void);
51 void smime_deinit(void);
52 void smime_reinit(void);
53 void renew_store(void);
54 void renew_cert_data(CertList **data, WhichCerts ctype);
55 BIO *print_private_key_information(char *email, int itype);
57 SMIME_STUFF_S *new_smime_struct(void);
58 int copy_publiccert_dir_to_container(void);
59 int copy_publiccert_container_to_dir(void);
60 int copy_privatecert_dir_to_container(void);
61 int copy_privatecert_container_to_dir(void);
62 int copy_cacert_dir_to_container(void);
63 int copy_cacert_container_to_dir(void);
64 int import_certificate(WhichCerts, PERSONAL_CERT *, char *);
65 int copy_dir_to_container(WhichCerts which, char *contents);
66 #ifdef APPLEKEYCHAIN
67 int copy_publiccert_container_to_keychain(void);
68 int copy_publiccert_keychain_to_container(void);
69 #endif /* APPLEKEYCHAIN */
70 #ifdef PASSFILE
71 int setup_pwdcert(void **pwdcert);
72 #endif /* PASSFILE */
73 void mark_cert_deleted(WhichCerts ctype, int num, unsigned state);
74 unsigned get_cert_deleted(WhichCerts ctype, int num);
75 int smime_expunge_cert(WhichCerts ctype);
76 int add_file_to_container(WhichCerts ctype, char *fpath, char *altname);
77 STACK_OF(X509) *get_chain_for_cert(X509 *cert, int *error, int *level);
78 CertList *certlist_from_personal_certs(PERSONAL_CERT *pc);
79 int smime_path(char *rpath, char *fpath, size_t len);
81 #endif /* PITH_SMIME_INCLUDED */
82 #endif /* SMIME */