Added BigCopy

This commit is contained in:
obscuren 2014-02-28 12:19:21 +01:00
parent 9d06f9e6fb
commit 8fa19664e6
1 changed files with 9 additions and 0 deletions

View File

@ -41,3 +41,12 @@ func BigToBytes(num *big.Int, base int) []byte {
return append(ret[:len(ret)-len(num.Bytes())], num.Bytes()...)
}
// Functions like the build in "copy" function
// but works on big integers
func BigCopy(src *big.Int) (ret *big.Int) {
ret = new(big.Int)
ret.Add(ret, src)
return
}