1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-02 22:46:30 +02:00

See ChangeLog: Mon Apr 26 17:48:15 CEST 1999 Werner Koch

This commit is contained in:
Werner Koch 1999-04-26 15:53:01 +00:00
parent ebb0ed57c7
commit bbf86c6e59
32 changed files with 866 additions and 265 deletions

View file

@ -45,7 +45,7 @@ typedef struct {
* Decrypt the data, specified by ED with the key DEK.
*/
int
decrypt_data( PKT_encrypted *ed, DEK *dek )
decrypt_data( void *procctx, PKT_encrypted *ed, DEK *dek )
{
decode_filter_ctx_t dfx;
byte *p;
@ -105,7 +105,7 @@ decrypt_data( PKT_encrypted *ed, DEK *dek )
return G10ERR_BAD_KEY;
}
iobuf_push_filter( ed->buf, decode_filter, &dfx );
proc_packets(ed->buf);
proc_packets( procctx, ed->buf);
ed->buf = NULL;
cipher_close(dfx.cipher_hd);
return 0;