nim-stint/README.md

35 lines
2.0 KiB
Markdown
Raw Normal View History

2018-04-25 10:52:00 +00:00
# Stint (Stack-based multiprecision integers)
2018-02-15 12:11:01 +00:00
2018-04-25 12:08:31 +00:00
[![Build Status (Travis)](https://img.shields.io/travis/status-im/nim-stint/master.svg?label=Linux%20/%20macOS "Linux/macOS build status (Travis)")](https://travis-ci.org/status-im/nim-stint)
2018-09-05 05:09:11 +00:00
[![Windows build status (Appveyor)](https://img.shields.io/appveyor/ci/nimbus/nim-stint/master.svg?label=Windows "Windows build status (Appveyor)")](https://ci.appveyor.com/project/nimbus/nim-stint)
2018-03-02 10:33:57 +00:00
[![License: Apache](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
2018-02-15 12:11:01 +00:00
![Stability: experimental](https://img.shields.io/badge/stability-experimental-orange.svg)
2018-04-25 10:52:00 +00:00
A fast and portable stack-based multi-precision integer library in pure Nim
2018-02-15 12:11:01 +00:00
Main focus:
2018-04-25 10:52:00 +00:00
- Portability
- 32 and 64 bit arch
- ARM for usage on mobile phones
- Additionally RISC-V and MIPS for open hardware and low power IoT devices.
- Speed, library is carefully tuned to produce the best assembly given the current compilers.
However, the library itself does not resort to assembly for portability.
- No heap/dynamic allocation
- Ethereum applications
- Uint256/Int256 for Ethereum Virtual Machine usage.
- Uint2048 for Ethereum Bloom filters
2018-02-15 12:11:01 +00:00
- Ease of use:
2018-04-25 10:52:00 +00:00
- Use traditional `+`, `-`, `+=`, etc operators like on native types
- Representation of numbers in memory is the exact same as native types and endianness aware.
- In practice that means that interfacing with binary blobs representing numbers from cryptographic libraries can be done with a `cast` if it represents a Uint256, Uint512, Uint1024, Uint2048.
- converting to and from Hex
- converting to and from decimal strings
2018-03-02 10:48:08 +00:00
## License
2018-09-05 05:09:11 +00:00
Licensed under both of the following:
2018-03-02 10:48:08 +00:00
* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)
2018-09-05 05:09:11 +00:00
* MIT license: [LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT