/[pkg-mixmaster]/trunk/Mix/Src/pgp.c
ViewVC logotype

Log of /trunk/Mix/Src/pgp.c

Parent Directory Parent Directory | Revision Log Revision Log


Links to HEAD: (view) (download) (annotate)
Sticky Revision:

Revision 332 - (view) (download) (annotate) - [select for diffs]
Modified Wed Oct 9 20:53:32 2002 UTC (10 years, 7 months ago) by weaselp
File length: 11960 byte(s)
Diff to previous 294
Whitespace cleanup:
for i in *.c; do cp -a $i $i.orig; sed -e 's/^        /<TAB>/' $i.orig > $i; rm $i.orig; done
for i in *.c *.h; do cp -a $i $i.orig; sed -e 's/[ <TAB>]*$//' $i.orig > $i; rm $i.orig; done

Revision 294 - (view) (download) (annotate) - [select for diffs]
Modified Mon Sep 30 21:26:28 2002 UTC (10 years, 7 months ago) by weaselp
File length: 11971 byte(s)
Diff to previous 291
Log CRC errors

Revision 291 - (view) (download) (annotate) - [select for diffs]
Modified Sat Sep 28 18:25:36 2002 UTC (10 years, 7 months ago) by ulfm
File length: 11905 byte(s)
Diff to previous 277
Warn when generating RSA keys without IDEA support.

Revision 277 - (view) (download) (annotate) - [select for diffs]
Modified Thu Sep 26 08:26:53 2002 UTC (10 years, 7 months ago) by disastry
File length: 11797 byte(s)
Diff to previous 275
mask off extra bits from crc24 in right place

Revision 275 - (view) (download) (annotate) - [select for diffs]
Modified Thu Sep 26 07:54:18 2002 UTC (10 years, 7 months ago) by weaselp
File length: 11798 byte(s)
Diff to previous 274
Compare only the lower 24 bits when checking CRCs

Revision 274 - (view) (download) (annotate) - [select for diffs]
Modified Thu Sep 26 07:44:40 2002 UTC (10 years, 7 months ago) by weaselp
File length: 11782 byte(s)
Diff to previous 268
Extended comments for pgp_armor()

Revision 268 - (view) (download) (annotate) - [select for diffs]
Modified Wed Sep 25 16:14:31 2002 UTC (10 years, 7 months ago) by disastry
File length: 11605 byte(s)
Diff to previous 262
Check PGP armor checksum

Revision 262 - (view) (download) (annotate) - [select for diffs]
Modified Wed Sep 18 23:26:17 2002 UTC (10 years, 8 months ago) by rabbi
File length: 11268 byte(s)
Diff to previous 254
Added closing comments for all #ifdef statements. All #endif's, as well as
nested braces, should be commented to reference their start.

We need to provide comments before every function as well.

Revision 254 - (view) (download) (annotate) - [select for diffs]
Modified Thu Sep 12 17:26:00 2002 UTC (10 years, 8 months ago) by disastry
File length: 11100 byte(s)
Diff to previous 182
check expiration and revocation of pgp keys, userids, subkeys

do not encrypt with expired or revoked keys, subkeys
do not sign with expired or revoked keys
do not decrypt with expired keys, subkeys after graceperiod

when encrypting use preferences from latest and/or primary userid

create new pgp keys if current are to expire in overlapperiod

Revision 182 - (view) (download) (annotate) - [select for diffs]
Modified Sun Aug 25 13:27:40 2002 UTC (10 years, 9 months ago) by weaselp
File length: 11079 byte(s)
Diff to previous 139
Use names rather than numbers as arument to pgp_armor. Have PGP PRIVATE for armoring

Revision 139 - (view) (download) (annotate) - [select for diffs]
Modified Tue Aug 20 06:50:38 2002 UTC (10 years, 9 months ago) by rabbi
File length: 10720 byte(s)
Diff to previous 135
Formatting corrections.

Now prints Mixmaster version in the OpenPGP Version header when displaying
a normal PGP message or key.

(Either outputs "Version: N/A" or "Version: 2.6.3i" when formatting
remailer or nym messages. Should we make this a user-configurable option?)

Revision 135 - (view) (download) (annotate) - [select for diffs]
Modified Fri Aug 16 19:03:37 2002 UTC (10 years, 9 months ago) by rabbi
File length: 10647 byte(s)
Diff to previous 134
Mixmaster now uses the OpenPGP MDC packets (as specified in RFC 2440-bis06).

Mixmaster will use MDC packets if the MDC flag is found in the recipient's
PGP key, or by default if it is encrypting with AES.

New keys generated with Mixmaster will have the MDC flag placed in the key's
preferences. Also, cipher preferences are now advertised as CAST5, AES128,
3DES.

Revision 134 - (view) (download) (annotate) - [select for diffs]
Modified Thu Aug 15 16:52:12 2002 UTC (10 years, 9 months ago) by weaselp
File length: 10629 byte(s)
Diff to previous 120
Several PGP fixes by Disastry:
No longer create mpi with leading zero <3D5BB519.F2E520F8@saiknes.lv>
Handle RSA keys with size not a multiple of 64 bits <3D5BA9E5.72B7C600@saiknes.lv>
put "Hash: SHA1\n" header when clearsigning with DSA/SHA1 <3D5B80F9.16F277AF@saiknes.lv>

Revision 120 - (view) (download) (annotate) - [select for diffs]
Modified Sat Aug 3 17:08:02 2002 UTC (10 years, 9 months ago) by weaselp
File length: 10490 byte(s)
Diff to previous 119
Submitted By: Sami Farin (safari):
Included correct header files.

Src/main.c had incorrect param to buf_appendf.

Added buf_write_sync() (used by Src/rem.c:mix_pool()).
Should a mixmaster machine crash, pool file can contain
any random data after reboot/journal recovery (at least
when using reiserfs).

Maybe not relevant, but strrchr should be used instead of
strchr when looking for domain part.

Src/pgpdata.c:pgp_elgdecrypt() passes uninitialized values
to BN_free if BN_CTX_new fails.

Src/pgpdata.c:pgp_elgencrypt() passes uninitialized value
to BN_free if the third mpi_get(key, i) fails.

Src/random.c does not check return value of read().

Src/rndseed.c does not check return value of read().

Revision 119 - (view) (download) (annotate) - [select for diffs]
Modified Thu Aug 1 14:24:24 2002 UTC (10 years, 9 months ago) by weaselp
File length: 10470 byte(s)
Diff to previous 1
Free buffer line in pgp_signtxt(). Thanks Disastry

Revision 1 - (view) (download) (annotate) - [select for diffs]
Added Wed Oct 31 08:19:51 2001 UTC (11 years, 6 months ago) by rabbi
File length: 10450 byte(s)
Initial revision

This form allows you to request diffs between any two revisions of this file. For each of the two "sides" of the diff, enter a numeric revision.

  Diffs between and
  Type of Diff should be a

  ViewVC Help
Powered by ViewVC 1.1.5