- From: Simon Spero <ses@tipper.oit.unc.edu>
- Date: Thu, 30 Nov 1995 12:29:54 -0800 (PST)
- To: "Daniel W. Connolly" <connolly@beach.w3.org>
- Cc: DF770AT@nsdl.bell-atl.com, "www-talk(a)info.cern.ch" <www-talk@w3.org>
Andy and I will be doing presentations and demonstations over the next two weeks at both the IETF and WebCon IV in Boston. We'll be putting out new documents next week for review at the Web Conference; because the time allocation for HTTP at the ietf is too tight, we'll just be giving a time report and describing the HTTP/1.X enapsulation mode. We'll be doing a full presentation at Boston (maybe with Celebrity packet traces again). Simon ----- (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))))
Received on Thursday, 30 November 1995 15:27:39 UTC