008-11-03 Marcus Brinkmann <marcus@g10code.com>
[gpgme.git] / src / encrypt-sign.c
1 /* encrypt-sign.c -  encrypt and verify functions
2    Copyright (C) 2000 Werner Koch (dd9jn)
3    Copyright (C) 2001, 2002, 2003, 2004 g10 Code GmbH
4  
5    This file is part of GPGME.
6  
7    GPGME is free software; you can redistribute it and/or modify it
8    under the terms of the GNU Lesser General Public License as
9    published by the Free Software Foundation; either version 2.1 of
10    the License, or (at your option) any later version.
11    
12    GPGME is distributed in the hope that it will be useful, but
13    WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15    Lesser General Public License for more details.
16    
17    You should have received a copy of the GNU Lesser General Public
18    License along with this program; if not, write to the Free Software
19    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
20    02111-1307, USA.  */
21
22 #if HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include "gpgme.h"
27 #include "context.h"
28 #include "ops.h"
29
30 \f
31 static gpgme_error_t
32 encrypt_sign_status_handler (void *priv, gpgme_status_code_t code, char *args)
33 {
34   gpgme_error_t err;
35
36   err = _gpgme_progress_status_handler (priv, code, args);
37   if (!err)
38     err = _gpgme_encrypt_status_handler (priv, code, args);
39   if (!err)
40     err = _gpgme_sign_status_handler (priv, code, args);
41   return err;
42 }
43
44
45 static gpgme_error_t
46 encrypt_sign_start (gpgme_ctx_t ctx, int synchronous, gpgme_key_t recp[],
47                     gpgme_encrypt_flags_t flags,
48                     gpgme_data_t plain, gpgme_data_t cipher)
49 {
50   gpgme_error_t err;
51
52   err = _gpgme_op_reset (ctx, synchronous);
53   if (err)
54     return err;
55
56   if (!plain)
57     return gpg_error (GPG_ERR_NO_DATA);
58   if (!cipher || !recp)
59     return gpg_error (GPG_ERR_INV_VALUE);
60
61   err = _gpgme_op_encrypt_init_result (ctx);
62   if (err)
63     return err;
64
65   err = _gpgme_op_sign_init_result (ctx);
66   if (err)
67     return err;
68
69   if (ctx->passphrase_cb)
70     {
71       err = _gpgme_engine_set_command_handler
72         (ctx->engine, _gpgme_passphrase_command_handler, ctx, NULL);
73       if (err)
74         return err;
75     }
76
77   _gpgme_engine_set_status_handler (ctx->engine,
78                                     encrypt_sign_status_handler, ctx);
79   
80   return _gpgme_engine_op_encrypt_sign (ctx->engine, recp, flags, plain,
81                                         cipher, ctx->use_armor,
82                                         ctx /* FIXME */);
83 }
84
85
86 /* Encrypt plaintext PLAIN within CTX for the recipients RECP and
87    store the resulting ciphertext in CIPHER.  Also sign the ciphertext
88    with the signers in CTX.  */
89 gpgme_error_t
90 gpgme_op_encrypt_sign_start (gpgme_ctx_t ctx, gpgme_key_t recp[],
91                              gpgme_encrypt_flags_t flags,
92                              gpgme_data_t plain, gpgme_data_t cipher)
93 {
94   return encrypt_sign_start (ctx, 0, recp, flags, plain, cipher);
95 }
96
97
98 /* Encrypt plaintext PLAIN within CTX for the recipients RECP and
99    store the resulting ciphertext in CIPHER.  Also sign the ciphertext
100    with the signers in CTX.  */
101 gpgme_error_t
102 gpgme_op_encrypt_sign (gpgme_ctx_t ctx, gpgme_key_t recp[],
103                        gpgme_encrypt_flags_t flags,
104                        gpgme_data_t plain, gpgme_data_t cipher)
105 {
106   gpgme_error_t err = encrypt_sign_start (ctx, 1, recp, flags, plain, cipher);
107   if (!err)
108     err = _gpgme_wait_one (ctx);
109   return err;
110 }