common, crypto: add ICAP functions

This commit is contained in:
Gustav Simonsson
2015-10-06 18:39:42 +02:00
parent 44fd395141
commit 2db9798646
5 changed files with 314 additions and 0 deletions

View File

@ -27,6 +27,9 @@ var (
BigTrue = Big1
BigFalse = Big0
Big32 = big.NewInt(32)
Big36 = big.NewInt(36)
Big97 = big.NewInt(97)
Big98 = big.NewInt(98)
Big256 = big.NewInt(0xff)
Big257 = big.NewInt(257)
MaxBig = String2Big("0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff")