Initialize the gmime for upstream
[platform/upstream/gmime.git] / gmime / gmime-multipart-encrypted.h
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*  GMime
3  *  Copyright (C) 2000-2012 Jeffrey Stedfast
4  *
5  *  This library is free software; you can redistribute it and/or
6  *  modify it under the terms of the GNU Lesser General Public License
7  *  as published by the Free Software Foundation; either version 2.1
8  *  of the License, or (at your option) any later version.
9  *
10  *  This library is distributed in the hope that it will be useful,
11  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  *  Lesser General Public License for more details.
14  *
15  *  You should have received a copy of the GNU Lesser General Public
16  *  License along with this library; if not, write to the Free
17  *  Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
18  *  02110-1301, USA.
19  */
20
21
22 #ifndef __GMIME_MULTIPART_ENCRYPTED_H__
23 #define __GMIME_MULTIPART_ENCRYPTED_H__
24
25 #include <gmime/gmime-multipart.h>
26 #include <gmime/gmime-crypto-context.h>
27
28 G_BEGIN_DECLS
29
30 #define GMIME_TYPE_MULTIPART_ENCRYPTED            (g_mime_multipart_encrypted_get_type ())
31 #define GMIME_MULTIPART_ENCRYPTED(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), GMIME_TYPE_MULTIPART_ENCRYPTED, GMimeMultipartEncrypted))
32 #define GMIME_MULTIPART_ENCRYPTED_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), GMIME_TYPE_MULTIPART_ENCRYPTED, GMimeMultipartEncryptedClass))
33 #define GMIME_IS_MULTIPART_ENCRYPTED(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GMIME_TYPE_MULTIPART_ENCRYPTED))
34 #define GMIME_IS_MULTIPART_ENCRYPTED_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GMIME_TYPE_MULTIPART_ENCRYPTED))
35 #define GMIME_MULTIPART_ENCRYPTED_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), GMIME_TYPE_MULTIPART_ENCRYPTED, GMimeMultipartEncryptedClass))
36
37 typedef struct _GMimeMultipartEncrypted GMimeMultipartEncrypted;
38 typedef struct _GMimeMultipartEncryptedClass GMimeMultipartEncryptedClass;
39
40 enum {
41         GMIME_MULTIPART_ENCRYPTED_VERSION,
42         GMIME_MULTIPART_ENCRYPTED_CONTENT
43 };
44
45
46 /**
47  * GMimeMultipartEncrypted:
48  * @parent_object: parent #GMimeMultipart
49  * @validity: a #GMimeSignatureValidity if the part has been decrypted or %NULL otherwise
50  * @decrypted: cached decrypted MIME part
51  *
52  * A multipart/encrypted MIME part.
53  **/
54 struct _GMimeMultipartEncrypted {
55         GMimeMultipart parent_object;
56         
57 };
58
59 struct _GMimeMultipartEncryptedClass {
60         GMimeMultipartClass parent_class;
61         
62 };
63
64
65 GType g_mime_multipart_encrypted_get_type (void);
66
67 GMimeMultipartEncrypted *g_mime_multipart_encrypted_new (void);
68
69 int g_mime_multipart_encrypted_encrypt (GMimeMultipartEncrypted *mpe, GMimeObject *content,
70                                         GMimeCryptoContext *ctx, gboolean sign,
71                                         const char *userid, GMimeDigestAlgo digest,
72                                         GPtrArray *recipients, GError **err);
73
74 GMimeObject *g_mime_multipart_encrypted_decrypt (GMimeMultipartEncrypted *mpe,
75                                                  GMimeCryptoContext *ctx,
76                                                  GMimeDecryptResult **result,
77                                                  GError **err);
78
79 G_END_DECLS
80
81 #endif /* __GMIME_MULTIPART_ENCRYPTED_H__ */