-
Notifications
You must be signed in to change notification settings - Fork 4
bigint
Vurdalakov edited this page May 9, 2017
·
2 revisions
bigint command-line tool performs operations with big integers (more than 64 bit ones).
It is based on the System.Numerics.BigInteger class.
bigint <command> <big integer>
-
fromhexcommand converts hex string to big integer.0xand&Hprefixes are allowed but not necessary. -
tohexcommand converts big integer to hex string. Neither0xnor&Hprefixes are added.
bigint tohex 14989625143250266164
0D005D8A63BB22834
bigint tohex -3457118930459285452
0D005D8A63BB22834
bigint fromhex 0D005D8A63BB22834
14989625143250266164
bigint fromhex D005D8A63BB22834
-3457118930459285452