crypto.bi

Browsing Concept: Uint256

In computer programming, a Uint256 is a 256 bit unsigned integer type. Since most mainstream computers can hold at most 64 to 128 bit numbers natively, 256 bit integers such as those used in Bitcoin must be especially crafted. Uint256 is the integer type used for Bitcoin and other cryptocurrencies’ private and public keys.

One publication found under Uint256
256 Bit Integer commented uint256.cpp from Bitcoin Core source code
If you've developed systems in C or C++ before then you're probably familiar with the stdint.h (cstdint for C++) typedefs. Since there'a lot of variation between platforms, stdint...