2003-07-29 Marcus Brinkmann <marcus@g10code.de>

* gpgme.texi (Encrypting a Plaintext): Mention encrypt and sign
	operations in result function.
	(Creating a Signature): Likewise.
This commit is contained in:
Marcus Brinkmann 2003-07-29 18:25:27 +00:00
parent b2e98c407a
commit 40343b5f4a
2 changed files with 22 additions and 12 deletions

View File

@ -1,3 +1,9 @@
2003-07-29 Marcus Brinkmann <marcus@g10code.de>
* gpgme.texi (Encrypting a Plaintext): Mention encrypt and sign
operations in result function.
(Creating a Signature): Likewise.
2003-07-23 Marcus Brinkmann <marcus@g10code.de> 2003-07-23 Marcus Brinkmann <marcus@g10code.de>
* gpgme.texi (Key Listing Mode): Remove word duplication. * gpgme.texi (Key Listing Mode): Remove word duplication.

View File

@ -3957,12 +3957,14 @@ A linked list with information about all signatures created.
@deftypefun gpgme_sign_result_t gpgme_op_sign_result (@w{gpgme_ctx_t @var{ctx}}) @deftypefun gpgme_sign_result_t gpgme_op_sign_result (@w{gpgme_ctx_t @var{ctx}})
The function @code{gpgme_op_sign_result} returns a The function @code{gpgme_op_sign_result} returns a
@code{gpgme_sign_result_t} pointer to a structure holding the result of a @code{gpgme_sign_result_t} pointer to a structure holding the result
@code{gpgme_op_sign} operation. The pointer is only valid if the last of a @code{gpgme_op_sign} operation. The pointer is only valid if the
operation on the context was a @code{gpgme_op_sign} or last operation on the context was a @code{gpgme_op_sign},
@code{gpgme_op_sign_start} operation, and if this operation finished @code{gpgme_op_sign_start}, @code{gpgme_op_encrypt_sign} or
successfully. The returned pointer is only valid until the next @code{gpgme_op_encrypt_sign_start} operation. If that operation
operation is started on the context. failed, the function might return a @code{NULL} pointer, The returned
pointer is only valid until the next operation is started on the
context.
@end deftypefun @end deftypefun
@ -4061,12 +4063,14 @@ the data could not be encrypted.
@deftypefun gpgme_encrypt_result_t gpgme_op_encrypt_result (@w{gpgme_ctx_t @var{ctx}}) @deftypefun gpgme_encrypt_result_t gpgme_op_encrypt_result (@w{gpgme_ctx_t @var{ctx}})
The function @code{gpgme_op_encrypt_result} returns a The function @code{gpgme_op_encrypt_result} returns a
@code{gpgme_encrypt_result_t} pointer to a structure holding the result of @code{gpgme_encrypt_result_t} pointer to a structure holding the
a @code{gpgme_op_encrypt} operation. The pointer is only valid if the result of a @code{gpgme_op_encrypt} operation. The pointer is only
last operation on the context was a @code{gpgme_op_encrypt} or valid if the last operation on the context was a
@code{gpgme_op_encrypt_start} operation, and if this operation @code{gpgme_op_encrypt}, @code{gpgme_op_encrypt_start},
finished successfully. The returned pointer is only valid until the @code{gpgme_op_sign} or @code{gpgme_op_sign_start} operation. If this
next operation is started on the context. operation failed, this might be a @code{NULL} pointer. The returned
pointer is only valid until the next operation is started on the
context.
@end deftypefun @end deftypefun