martinus / base58

A fast implementation of base58 encoding

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ankerl's Base58

This is a fast implementation of Base58.

Features

  • Fast

Building

cmake -Htest -DCMAKE_BUILD_TYPE=Release -Bbuild/release -GNinja
cmake -Htest -Bbuild/debug -GNinja

Additional tools

The test and standalone subprojects include the tools.cmake file which is used to import additional tools on-demand through CMake configuration arguments. The following are currently supported.

Sanitizers

Sanitizers can be enabled by configuring CMake with -DUSE_SANITIZER=<Address | Memory | MemoryWithOrigins | Undefined | Thread | Leak | 'Address;Undefined'>.

Static Analyzers

Static Analyzers can be enabled by setting -DUSE_STATIC_ANALYZER=<clang-tidy | iwyu | cppcheck>, or a combination of those in quotation marks, separated by semicolons. By default, analyzers will automatically find configuration files such as .clang-format. Additional arguments can be passed to the analyzers by setting the CLANG_TIDY_ARGS, IWYU_ARGS or CPPCHECK_ARGS variables.

About

A fast implementation of base58 encoding

License:MIT License


Languages

Language:C++ 55.7%Language:CMake 44.3%