Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 408 Bytes

README.md

File metadata and controls

18 lines (13 loc) · 408 Bytes

Uint256

Build Status

Unsigned 256-bit integer library for all your cryptographic needs

Example

import (
    "github.com/kg6zvp/go-uint256"
)

zero := uint256.Uint256{0,0,0,0} // a uint256.Uint256 is made up of 4 uint64's
if zero.Equal(uint256.EmptyUint256()) {
	//this will be true
}