[44313] in Cypherpunks
Re: Netscape's Delicate Balancing Act
daemon@ATHENA.MIT.EDU (Simon Spero)
Thu Nov 30 20:10:30 1995
Date: Thu, 30 Nov 1995 17:01:33 -0800 (PST)
From: Simon Spero <ses@tipper.oit.unc.edu>
To: "Timothy C. May" <tcmay@got.net>
Cc: cypherpunks@toad.com
In-Reply-To: <ace375f6030210040b22@[205.199.118.202]>
If anyone interested, I'm planning to make up some T-Shirts featuring
"The South Bay Url Company".
Simon // Yes, we also do Tulips
---
(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))))