Formatting

This commit is contained in:
Thorsten Sommer 2020-01-07 00:35:51 +01:00
parent 3c64879ccf
commit 23dd04e5d8

View File

@ -27,7 +27,8 @@ namespace Ed25519
internal static BigInteger Mod(this BigInteger number, BigInteger modulo)
{
var result = number % modulo;
return result < 0 ? result + modulo : result;
result = result < 0 ? result + modulo : result;
return result;
}
internal static BigInteger Inv(this BigInteger number)