RSA accellerators on ISA/PCI cards?

Simon Spero ses at tipper.oit.unc.edu
Sat Jan 13 13:38:04 PST 1996


Does anybody have any recommendations for a good RSA accellerator 
available on an ISA/PCI card? I'm looking for something that can be used 
with numerous public/private keys, though the ability to have one 
tamperproof key would be a bonus.

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







More information about the cypherpunks-legacy mailing list