Detailed Results
----------------
- Function: char * gpgme_get_op_info (GpgmeCtx CTX, int RESERVED)
The function `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 `free'.
Here is a sample of the information that might be returned:
<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>
Currently, the only operations that return additional information
are encrypt, sign and import. Note:Encrypt, Note:Sign,
Note:Importing Keys.
The function returns a string or `NULL' if no such data is
available.