* Set default ssl configuration for Homebrew in MAC OSX to
[alpine.git] / pith / smime.h
blob8acaaa8e8ec28fca15f9aac42dcea6afea527c3e
1 /*
2 * $Id: smime.h 1074 2008-06-04 00:08:43Z hubert@u.washington.edu $
4 * ========================================================================
5 * Copyright 2013-2014 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 /* exported protoypes */
38 int smime_validate_cert(X509 *cert, long *error);
39 int encrypt_file(char *fp, char *text, PERSONAL_CERT *pc);
40 char *decrypt_file(char *fp, int *rv, PERSONAL_CERT *pc);
41 int is_pkcs7_body(BODY *b);
42 int fiddle_smime_message(BODY *b, long msgno);
43 int encrypt_outgoing_message(METAENV *header, BODY **bodyP);
44 void free_smime_body_sparep(void **sparep);
45 int sign_outgoing_message(METAENV *header, BODY **bodyP, int dont_detach);
46 void gf_puts_uline(char *txt, gf_io_t pc);
47 PERSONAL_CERT *find_certificate_matching_recip_info(PKCS7_RECIP_INFO *ri);
48 PERSONAL_CERT *get_personal_certs(char *path);
49 void smime_init(void);
50 void smime_deinit(void);
51 void smime_reinit(void);
52 void renew_store(void);
53 void renew_cert_data(CertList **data, WhichCerts ctype);
54 BIO *print_private_key_information(char *email, int itype);
56 SMIME_STUFF_S *new_smime_struct(void);
57 int copy_publiccert_dir_to_container(void);
58 int copy_publiccert_container_to_dir(void);
59 int copy_privatecert_dir_to_container(void);
60 int copy_privatecert_container_to_dir(void);
61 int copy_cacert_dir_to_container(void);
62 int copy_cacert_container_to_dir(void);
63 int import_certificate(WhichCerts);
64 int copy_dir_to_container(WhichCerts which, char *contents);
65 #ifdef APPLEKEYCHAIN
66 int copy_publiccert_container_to_keychain(void);
67 int copy_publiccert_keychain_to_container(void);
68 #endif /* APPLEKEYCHAIN */
69 #ifdef PASSFILE
70 void setup_pwdcert(void **pwdcert);
71 #endif /* PASSFILE */
72 void mark_cert_deleted(WhichCerts ctype, int num, unsigned state);
73 unsigned get_cert_deleted(WhichCerts ctype, int num);
74 int smime_expunge_cert(WhichCerts ctype);
75 int add_file_to_container(WhichCerts ctype, char *fpath, char *altname);
77 #endif /* PITH_SMIME_INCLUDED */
78 #endif /* SMIME */