Re: HTTP++

Simon Spero ([email protected])
Thu, 30 Nov 1995 12:29:54 -0800 (PST)


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))))