[46141] in Cypherpunks
new years resolutions for cypherpunks
daemon@ATHENA.MIT.EDU (Simon Spero)
Sat Dec 30 19:04:30 1995
Date: Sat, 30 Dec 1995 15:41:38 -0800 (PST)
From: Simon Spero <ses@tipper.oit.unc.edu>
To: cypherpunks@toad.com
In-Reply-To: <199512302133.QAA00352@localhost.cjs.net>
Another year, another flamewar :-)
Anyone else prepared to sign something similar?
Simon
-----BEGIN PGP SIGNED MESSAGE-----
In 1996 I resolve to
1) Avoid ad-hominem attacks even on complete idiots
2) Not post non-crypto libertarian or consipracy items to
cypherpunks.
3) Contribute to, Implement and use open cryptographic standards
rather than proprietary ones.
4) Have most of my regular internet hosts running IPSEC before 1997.
-----BEGIN PGP SIGNATURE-----
Version: 2.6.1
iQB1AwUBMOXNiQkKftKguxLhAQEDsAL/ZoWeONP+R2pJrA9O9RuIu+Juljt04OIB
pFYxH+DfktzDoX0dhfDkrP0TdjMiXnPI7Z5zkidF4O2oUJ0Myzv1F9VSgFXiyU7X
BHUxnazXmhj7crbt86YIwchxqgLGVVNw
=Bwyh
-----END PGP SIGNATURE-----
(defun modexpt (x y n) "computes (x^y) mod n"
(cond ((= y 0) 1)
((= y 1) (mod x n))
((evenp y) (mod (expt (modexpt x (/ y 2) n) 2) n))
(t (mod (* x (modexpt x (1- y) n)) n))))