Security
smith.lst
Associated article: Luc Public-Key Encryption
Tags: Security
_LUC PUBLIC-KEY ENCRYPTION_
by Peter Smith
[LISTING ONE]
{ To calculate Ve(P,1) modulo N }
Procedure LUCcalc;
{Initialise}
BEGIN
D := P*P - 4; ut := 1; vt := P; u := ut; v := vt;
If not odd(e) then BEGIN u := 0; v := 2; END;
e := e ...


