From: Simon Spero <ses@tipper.oit.unc.edu>
To: Don <don@cs.byu.edu>
Message Hash: aa3c43c7f5820ebd3f7b435174f832b54b9f11fa3e29e6ab3a0b3ebda54f937e
Message ID: <Pine.SOL.3.91.960204150405.379A-100000@chivalry>
Reply To: <ML-2.0.823473101.7349.don@wero.cs.byu.edu>
UTC Datetime: 1996-02-04 23:24:13 UTC
Raw Date: Mon, 5 Feb 1996 07:24:13 +0800
From: Simon Spero <ses@tipper.oit.unc.edu>
Date: Mon, 5 Feb 1996 07:24:13 +0800
To: Don <don@cs.byu.edu>
Subject: Re: Wading through lame crap, plus on-topic privacy stuff
In-Reply-To: <ML-2.0.823473101.7349.don@wero.cs.byu.edu>
Message-ID: <Pine.SOL.3.91.960204150405.379A-100000@chivalry>
MIME-Version: 1.0
Content-Type: text/plain
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))))
Return to February 1996
Return to “Vincent Gebes <vgebes@jp.psi.com>”