From: Simon Spero <ses@tipper.oit.unc.edu>
To: Kevin L Prigge <klp@gold.tc.umn.edu>
Message Hash: adbaddbe7fd83c13d2652856a0526dbc0752c93107e9be9d9de254723364bdfd
Message ID: <Pine.SOL.3.91.951031113820.1151B-100000@chivalry>
Reply To: <3095c7353a43002@noc.cis.umn.edu>
UTC Datetime: 1995-10-31 23:48:45 UTC
Raw Date: Wed, 1 Nov 1995 07:48:45 +0800
From: Simon Spero <ses@tipper.oit.unc.edu>
Date: Wed, 1 Nov 1995 07:48:45 +0800
To: Kevin L Prigge <klp@gold.tc.umn.edu>
Subject: PGP On shared machines (was Re: Keyed-MD5, ITAR, and HTTP-NG)
In-Reply-To: <3095c7353a43002@noc.cis.umn.edu>
Message-ID: <Pine.SOL.3.91.951031113820.1151B-100000@chivalry>
MIME-Version: 1.0
Content-Type: text/plain
One important thing to note in an academic environment is that if you
have foreign students who are on non-green card visas, you may need to
get an export licence if they can access the server. I expect you'll
probably get the licence without too much hassle, and you're unlikely to
be indicted for this, but it's something to be aware of.
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))))
Return to November 1995
Return to “Simon Spero <ses@tipper.oit.unc.edu>”