[49204] in Cypherpunks
Re: Wading through lame crap, plus on-topic privacy stuff
daemon@ATHENA.MIT.EDU (Simon Spero)
Sun Feb 4 18:08:05 1996
Date: Sun, 4 Feb 1996 15:06:55 -0800 (PST)
From: Simon Spero <ses@tipper.oit.unc.edu>
To: Don <don@cs.byu.edu>
Cc: cypherpunks@toad.com
In-Reply-To: <ML-2.0.823473101.7349.don@wero.cs.byu.edu>
Even your on-topic stuff wasn't really on-topic "-)
You can relax - the bank doesn't have a bunch of PIs snooping around to
find out what you're up to. What actually happens is that the university
sells the list of registered students to various organisations for use in
direct-mail campaigns.
(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))))