RSA accellerators on ISA/PCI cards?

17 Dec
2003
17 Dec
'03
11:17 p.m.
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))))
7884
Age (days ago)
7884
Last active (days ago)
0 comments
1 participants
participants (1)
-
Simon Spero