2003-04-27 Marcus Brinkmann <marcus@g10code.de>
authorMarcus Brinkmann <mb@g10code.com>
Sun, 27 Apr 2003 23:05:03 +0000 (23:05 +0000)
committerMarcus Brinkmann <mb@g10code.com>
Sun, 27 Apr 2003 23:05:03 +0000 (23:05 +0000)
* encrypt-sign.c: Do not include <stddef.h>, <stdio.h>,
<stdlib.h>, <string.h>, <assert.h> and "util.h", but "gpgme.h".
(_gpgme_op_encrypt_sign_start): Rename to ...
(encrypt_sign_start): ... this.
(gpgme_op_encrypt_sign_start): Use encrypt_sign_start, not
_gpgme_op_encrypt_sign_start.
(gpgme_op_encrypt_sign): Likewise.

gpgme/ChangeLog
gpgme/encrypt-sign.c

index 3b44aaccf4f5840778a56678d67a682f2856655d..0a798c6c756f93fc502991877da434cf9bf9a69d 100644 (file)
@@ -1,5 +1,13 @@
 2003-04-27  Marcus Brinkmann  <marcus@g10code.de>
 
+       * encrypt-sign.c: Do not include <stddef.h>, <stdio.h>,
+       <stdlib.h>, <string.h>, <assert.h> and "util.h", but "gpgme.h".
+       (_gpgme_op_encrypt_sign_start): Rename to ...
+       (encrypt_sign_start): ... this.
+       (gpgme_op_encrypt_sign_start): Use encrypt_sign_start, not
+       _gpgme_op_encrypt_sign_start.
+       (gpgme_op_encrypt_sign): Likewise.
+
        * gpgme.h (GpgmeEncryptResult): New data type.
        (gpgme_op_encrypt_result): New prototype.
        * ops.h (_gpgme_op_encrypt_init_result): New prototype.
index 2a3dba2df3a78af7cbe68e45e60f95366b6cffcd..466f664ea61062ebfe7e475cc4bc7fefe02b4838 100644 (file)
 #if HAVE_CONFIG_H
 #include <config.h>
 #endif
-#include <stddef.h>
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-#include <assert.h>
 
-#include "util.h"
+#include "gpgme.h"
 #include "context.h"
 #include "ops.h"
 
-
+\f
 static GpgmeError
 encrypt_sign_status_handler (void *priv, GpgmeStatusCode code, char *args)
 {
@@ -41,9 +36,8 @@ encrypt_sign_status_handler (void *priv, GpgmeStatusCode code, char *args)
 
 
 static GpgmeError
-_gpgme_op_encrypt_sign_start (GpgmeCtx ctx, int synchronous,
-                             GpgmeRecipients recp,
-                             GpgmeData plain, GpgmeData cipher)
+encrypt_sign_start (GpgmeCtx ctx, int synchronous, GpgmeRecipients recp,
+                   GpgmeData plain, GpgmeData cipher)
 {
   GpgmeError err;
 
@@ -75,37 +69,31 @@ _gpgme_op_encrypt_sign_start (GpgmeCtx ctx, int synchronous,
 
   _gpgme_engine_set_status_handler (ctx->engine,
                                    encrypt_sign_status_handler, ctx);
-
+  
   return _gpgme_engine_op_encrypt_sign (ctx->engine, recp, plain, cipher,
                                        ctx->use_armor, ctx /* FIXME */);
 }
 
+
+/* Encrypt plaintext PLAIN within CTX for the recipients RECP and
+   store the resulting ciphertext in CIPHER.  Also sign the ciphertext
+   with the signers in CTX.  */
 GpgmeError
 gpgme_op_encrypt_sign_start (GpgmeCtx ctx, GpgmeRecipients recp,
                              GpgmeData plain, GpgmeData cipher)
 {
-  return _gpgme_op_encrypt_sign_start (ctx, 0, recp, plain, cipher);
+  return encrypt_sign_start (ctx, 0, recp, plain, cipher);
 }
 
 
-/**
- * gpgme_op_encrypt_sign:
- * @ctx: The context
- * @recp: The set of recipients
- * @plain: plaintext input
- * @cipher: signed ciphertext
- * 
- * This function encrypts @plain for all recipients in recp, signs it,
- * and returns the ciphertext in @out.  The function does wait for the
- * result.
- * 
- * Return value:  0 on success or an errorcode. 
- **/
+/* Encrypt plaintext PLAIN within CTX for the recipients RECP and
+   store the resulting ciphertext in CIPHER.  Also sign the ciphertext
+   with the signers in CTX.  */
 GpgmeError
 gpgme_op_encrypt_sign (GpgmeCtx ctx, GpgmeRecipients recp,
                       GpgmeData plain, GpgmeData cipher)
 {
-  GpgmeError err = _gpgme_op_encrypt_sign_start (ctx, 1, recp, plain, cipher);
+  GpgmeError err = encrypt_sign_start (ctx, 1, recp, plain, cipher);
   if (!err)
     err = _gpgme_wait_one (ctx);
   return err;