Home Online Manual
Top
Back: powerX
Forward: rho
FastBack:
FastForward:
Up: crypto_lib
Top: Singular Manual
Contents: Table of Contents
Index: Index
About: About this document

D.12.3.14 babyGiant

Procedure from library crypto.lib (see crypto_lib).

Usage:
babyGiant(b,y,p);

Return:
the discrete logarithm x: b^x=y mod p

Note:
This procedure works based on Shank's baby step - giant step method.

Example:
 
LIB "crypto.lib";
bigint b=2;
bigint y=10;
bigint p=101;
babyGiant(b,y,p);
==> 25