https://github.com/zilliqa/cryptoutils
https://github.com/zilliqa/cryptoutils
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/zilliqa/cryptoutils
- Owner: Zilliqa
- License: gpl-3.0
- Created: 2021-01-21T13:37:41.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2022-11-14T11:37:23.000Z (over 3 years ago)
- Last Synced: 2025-04-14T14:59:08.884Z (about 1 year ago)
- Language: C++
- Homepage:
- Size: 90.8 KB
- Stars: 1
- Watchers: 16
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Crypto Utilities
## Build
Clone this repository with all of its submodules
- `git clone --recurse-submodules https://github.com/Zilliqa/cryptoutils/`
Run `CMake` by providing a `CMAKE_INSTALL_PREFIX` argument to install it
to a directory of your choice:
- `mkdir -p build; cd build`
- `cmake ../ -DCMAKE_INSTALL_PREFIX=../install`
- `make install`
Alternatively, run the provided `build.sh` script. The project will be built in `build/`
subdirectory of the project.
If you wish to build / install an archive instead of
the default shared library build, provide the additional `CMake` argument
`-DCRYPTOUTILS_BUILD_ARCHIVE=1`.