diff options
author | Werner Koch <[email protected]> | 2009-10-02 14:57:55 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2009-10-02 14:57:55 +0000 |
commit | 71625f56fd98ab37bc05f1806b4b49a2e418ac37 (patch) | |
tree | 24d54f73a41c21241f7b99c3eee15374b1185df6 /g10/packet.h | |
parent | Fixed EOF detection for encrypted packets. (diff) | |
download | gnupg-71625f56fd98ab37bc05f1806b4b49a2e418ac37.tar.gz gnupg-71625f56fd98ab37bc05f1806b4b49a2e418ac37.zip |
Implement the server comamnd DECRYPT.
Use int instead of gnupg_fd_t in the server.
Comment fixes.
Rename encr-data.c -> decrypt-data.c
Diffstat (limited to '')
-rw-r--r-- | g10/packet.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/g10/packet.h b/g10/packet.h index cb2f0c9f1..395e70ab9 100644 --- a/g10/packet.h +++ b/g10/packet.h @@ -289,8 +289,8 @@ typedef struct { } PKT_compressed; typedef struct { - u32 len; /* length of encrypted data */ - int extralen; /* this is (blocksize+2) */ + u32 len; /* Remaining length of encrypted data. */ + int extralen; /* This is (blocksize+2). Used by build_packet. */ byte new_ctb; /* uses a new CTB */ byte is_partial; /* partial length encoded */ byte mdc_method; /* > 0: integrity protected encrypted data packet */ |