doc: Add warning that FILE_NAME is not part of the signed data.
--
This commit is contained in:
parent
4f28fbddd3
commit
702566b36c
@ -5845,7 +5845,15 @@ verification was attempted.
|
||||
|
||||
@item char *file_name
|
||||
This is the filename of the original plaintext message file if it is
|
||||
known, otherwise this is a null pointer.
|
||||
known, otherwise this is a null pointer. Warning: The filename is
|
||||
not covered by the signature.
|
||||
|
||||
@item unsigned int is_mime : 1;
|
||||
@since{1.11.0}
|
||||
|
||||
The message claims that the content is a MIME object. Warning: This
|
||||
flag is not covered by the signature.
|
||||
|
||||
@end table
|
||||
@end deftp
|
||||
|
||||
|
@ -1591,11 +1591,12 @@ struct _gpgme_op_verify_result
|
||||
{
|
||||
gpgme_signature_t signatures;
|
||||
|
||||
/* The original file name of the plaintext message, if
|
||||
available. */
|
||||
/* The original file name of the plaintext message, if available.
|
||||
* Warning: This information is not covered by the signature. */
|
||||
char *file_name;
|
||||
|
||||
/* The message claims that the content is a MIME object. */
|
||||
/* Warning: This flag is not covered by the signature. */
|
||||
unsigned int is_mime : 1;
|
||||
|
||||
/* Internal to GPGME; do not use. */
|
||||
|
Loading…
Reference in New Issue
Block a user