|  |  D.12.3.12 solutionsMod2 Procedure from librarycrypto.lib(see  crypto_lib).
 
Example:Usage:
solutionsMod2(M);
Return:
an intmat containing a basis of the vector space of solutions of the
linear system of equations defined by M over the prime field of
characteristic 2
 |  | LIB "crypto.lib";
bigintmat M[3][3]=1,2,3,4,5,6,7,6,5;
solutionsMod2(M);
==> 1,0,1
 | 
 
 |