* Fix an error in compilation when Alpine is not built with S/MIME
[alpine.git] / pith / smkeys.h
blob8c23d9053f1d29ca65f8fd42588cf1598a5521dc
1 /*
2 * $Id: smkeys.h 1074 2008-06-04 00:08:43Z hubert@u.washington.edu $
4 * ========================================================================
5 * Copyrighr 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_SMKEYS_INCLUDED
19 #define PITH_SMKEYS_INCLUDED
22 #include "../pith/state.h"
23 #include "../pith/send.h"
25 #include <openssl/objects.h>
26 #include <openssl/evp.h>
27 #include <openssl/x509.h>
28 #include <openssl/pkcs7.h>
29 #include <openssl/pem.h>
30 #include <openssl/err.h>
31 #include <openssl/bio.h>
34 #define EMAILADDRLEADER "emailAddress="
35 #define CACERTSTORELEADER "cacert="
38 typedef struct personal_cert {
39 X509 *cert;
40 EVP_PKEY *key;
41 char *name; /* name of key */
42 char *cname; /* name of cert */
43 char *keytext;
44 struct personal_cert *next;
45 } PERSONAL_CERT;
47 /* flags that tell us where to look for certificates/keys */
48 #define SM_NORMALCERT 0x1 /* look in normal user defined directory */
49 #define SM_BACKUPCERT 0x2 /* look in backup directory */
51 /* exported protoypes */
52 int add_certs_in_dir(X509_LOOKUP *lookup, char *path, char *ext, CertList **cdata);
53 X509_STORE *get_ca_store(void);
54 PERSONAL_CERT *get_personal_certs(char *d);
55 X509 *get_cert_for(char *email, WhichCerts ctype, int tolower);
56 void save_cert_for(char *email, X509 *cert, WhichCerts ctype);
57 char **get_x509_subject_email(X509 *x);
58 EVP_PKEY *load_key(PERSONAL_CERT *pc, char *pass, int flag);
59 CertList *mem_to_certlist(char *contents, WhichCerts ctype);
60 void add_to_end_of_certlist(CertList **cl, char *name, X509 *cert);
61 void free_certlist(CertList **cl);
62 PERSONAL_CERT *mem_to_personal_certs(char *contents);
63 void free_personal_certs(PERSONAL_CERT **pc);
64 void get_fingerprint(X509 *cert, const EVP_MD *type, char *buf, size_t maxLen, char *s);
65 int certlist_to_file(char *filename, CertList *certlist);
66 int load_cert_for_key(char *pathdir, EVP_PKEY *pkey, char **certfile, X509 **pcert);
67 char *smime_get_date(ASN1_GENERALIZEDTIME *tm);
68 void resort_certificates(CertList **data, WhichCerts ctype);
69 int setup_certs_backup_by_type(WhichCerts ctype);
70 char *smime_get_cn(X509_NAME *);
71 CertList *smime_X509_to_cert_info(X509 *, char *);
74 #endif /* PITH_SMKEYS_INCLUDED */
75 #endif /* SMIME */