aboutsummaryrefslogtreecommitdiffstats
path: root/doc/gpgme.texi
diff options
context:
space:
mode:
authorMarcus Brinkmann <[email protected]>2003-04-30 03:34:30 +0000
committerMarcus Brinkmann <[email protected]>2003-04-30 03:34:30 +0000
commit102e973a9bc2746899bf604ea70e69f9862a6c6b (patch)
tree67646bf80f852e20e81dd832fa72fc9aa3562013 /doc/gpgme.texi
parentReally remove file. (diff)
downloadgpgme-102e973a9bc2746899bf604ea70e69f9862a6c6b.tar.gz
gpgme-102e973a9bc2746899bf604ea70e69f9862a6c6b.zip
doc/
2003-04-30 Marcus Brinkmann <[email protected]> * gpgme.texi (Encrypting a Plaintext): Remove reference to gpgme_get_op_info. (Detailed Results): Subsection removed. gpgme/ 2003-04-30 Marcus Brinkmann <[email protected]> * gpgme.h (gpgme_get_op_info): Remove prototype. * ops.h (_gpgme_set_op_info, _gpgme_data_release_and_return_string, _gpgme_data_get_as_string, _gpgme_data_append, _gpgme_data_append_string, _gpgme_data_append_string_for_xml, _gpgme_data_append_for_xml, _gpgme_data_append_percentstring_for_xml): Likewise. (_gpgme_progress_status_handler): Change first arg to void *. * progress.c (_gpgme_progress_status_handler): Likewise. * conversion.c: Do not include <string.h>, <errno.h>, <ctype.h>, and <sys/types.h>, but <string.h>. (_gpgme_data_append): Remove function. (_gpgme_data_append_string): Likewise. (_gpgme_data_append_for_xml): Likewise. (_gpgme_data_append_string_for_xml): Likewise. (_gpgme_data_append_percentstring_for_xml): Likewise. * data-mem.c (_gpgme_data_get_as_string): Likewise. (_gpgme_data_release_and_return_string): Likewise. * gpgme.c (gpgme_get_op_info): Likewise. (_gpgme_set_op_info): Likewise. tests/ 2003-04-30 Marcus Brinkmann <[email protected]> * gpg/t-eventloop.c (main): Do not call print_op_info. (print_op_info): Function removed.
Diffstat (limited to 'doc/gpgme.texi')
-rw-r--r--doc/gpgme.texi38
1 files changed, 1 insertions, 37 deletions
diff --git a/doc/gpgme.texi b/doc/gpgme.texi
index 2107e843..19bc0fbf 100644
--- a/doc/gpgme.texi
+++ b/doc/gpgme.texi
@@ -181,7 +181,6 @@ Crypto Operations
* Decrypt and Verify:: Decrypting a signed ciphertext.
* Sign:: Creating a signature.
* Encrypt:: Encrypting a plaintext.
-* Detailed Results:: How to obtain more info about the operation.
Sign
@@ -3040,7 +3039,6 @@ An error code describing the reason why the user ID was found invalid.
* Decrypt and Verify:: Decrypting a signed ciphertext.
* Sign:: Creating a signature.
* Encrypt:: Encrypting a plaintext.
-* Detailed Results:: How to obtain more info about the operation.
@end menu
@@ -3837,7 +3835,7 @@ If @code{GPGME_Invalid_UserID} is returned, some recipients in
@var{rset} are invalid, but not all. In this case the plaintext is
encrypted for all valid recipients and returned in @var{cipher}. More
information about the invalid recipients is available with
-@code{gpgme_get_op_info}. @xref{Detailed Results}.
+@code{gpgme_op_encrypt_result}.
If @var{recp} is @code{NULL}, symmetric rather than public key
encryption is performed. Symmetrically encrypted cipher text can be
@@ -3917,40 +3915,6 @@ recipients.
@end deftypefun
-@node Detailed Results
-@subsection Detailed Results
-@cindex cryptographic operation, detailed results
-
-@deftypefun {char *} gpgme_get_op_info (@w{GpgmeCtx @var{ctx}}, @w{int @var{reserved}})
-The function @code{gpgme_get_op_info} retrieves more information about
-the last crypto operation.
-
-The function returns a string in the XML format. The user has to
-release the string with @code{free}.
-
-Here is a sample of the information that might be returned:
-@example
-<GnupgOperationInfo>
- <signature>
- <detached/> <!-- or cleartext or standard -->
- <algo>17</algo>
- <hashalgo>2</hashalgo>
- <micalg>pgp-sha1</micalg>
- <sigclass>01</sigclass>
- <created>9222222</created>
- <fpr>121212121212121212</fpr>
- </signature>
-</GnupgOperationInfo>
-@end example
-
-Currently, the only operations that return additional information are
-encrypt, sign. @xref{Encrypt}, @xref{Sign}.
-
-The function returns a string or @code{NULL} if no such data is
-available.
-@end deftypefun
-
-
@node Run Control
@section Run Control
@cindex run control