Beispiel #1
0
 /// <summary>
 /// Squares this GF2nPolynomialElement by shifting left its Bitstring and reducing.
 /// <para>This is supposed to be the slowest method. Use SquarePreCalc or SquareMatrix instead.</para>
 /// </summary>
 public void SquareThisBitwise()
 {
     polynomial.SquareThisBitwise();
     ReduceThis();
 }