Calculate() public static méthode

public static Calculate ( BigInteger a, BigInteger b ) : byte[]
a BigInteger
b BigInteger
Résultat byte[]
Exemple #1
0
 /// <summary>
 ///     Calculate 2^X mod P
 /// </summary>
 private void GenerateY()
 {
     _y = ModuloCalculator.Calculate(ModuloCalculator.Two, _x);
 }
Exemple #2
0
 protected virtual void DoneReceiveY()
 {
     S = ModuloCalculator.Calculate(_otherY, _x);
 }