|  |  D.12.3.8 primL Procedure from librarycrypto.lib(see  crypto_lib).
 
Example:Usage:
primL(q);
Return:
list of the first primes p_1,...,p_r such that q>p_1*...*p_(r-1)
and q<p_1*...*p_r
 |  | LIB "crypto.lib";
primL(20);
==> [1]:
==>    2
==> [2]:
==>    3
==> [3]:
==>    5
 | 
 
 |