Hello,
when signing/verifying/encrypting messages having a size between 8192
and 8192+512 bytes, only the first 8192 bytes will be piped into gpg.
Example:
$ xemacs -vanilla
(setq pgg-default-user-id "...")
C-c C-f empty-file
C-u 8192 a X
M-x pgg-sign
--> the buffer contains only the first 8192 'a' but not the trailing X:
| -----BEGIN PGP SIGNED MESSAGE-----
| Hash: SHA1
| ...aa
| -----BEGIN PGP SIGNATURE-----
| ...
expected would be
| -----BEGIN PGP SIGNED MESSAGE-----
| Hash: SHA1
| ...aaX
| -----BEGIN PGP SIGNATURE-----
| ...
Environment:
* Red Hat Linux 9 based
* xemacs-21.4.12 compiled by me
* pgg 1.02
* glibc-2.3.2-37
* vanilla 2.4.20 linux kernel + some patches
Enrico