https://github.com/eddytheco/esterv.crypto.slip10
https://github.com/eddytheco/esterv.crypto.slip10
crypto qt6 slip10
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/eddytheco/esterv.crypto.slip10
- Owner: EddyTheCo
- License: gpl-3.0
- Created: 2022-11-23T20:30:26.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-08T08:08:17.000Z (9 months ago)
- Last Synced: 2024-09-08T09:23:33.075Z (9 months ago)
- Topics: crypto, qt6, slip10
- Language: C++
- Homepage: https://eddytheco.github.io/Esterv.Crypto.Slip10/
- Size: 47.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Universal private key derivation from master private key
[TOC]
This repo produce a library for deriving private keys from a master key following this [slip](https://github.com/satoshilabs/slips/blob/master/slip-0010.md).
This repo only works with ed25519 curve types.## Installing the library
### From source code
```
git clone https://github.com/EddyTheCo/Qslip10.gitmkdir build
cd build
qt-cmake -G Ninja -DCMAKE_INSTALL_PREFIX=installDir -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTING=OFF -DBUILD_DOCS=OFF ../Qslip10cmake --build .
cmake --install .
```
where `installDir` is the installation path.
One can choose to build or not the tests and the documentation with the `BUILD_TESTING` and `BUILD_DOCS` variables.### From GitHub releases
Download the releases from this repo.## Adding the libraries to your CMake project
```CMake
include(FetchContent)
FetchContent_Declare(
QtSlip10
GIT_REPOSITORY https://github.com/EddyTheCo/Qslip10.git
GIT_TAG vMAJOR.MINOR.PATCH
FIND_PACKAGE_ARGS MAJOR.MINOR CONFIG
)
FetchContent_MakeAvailable(QtSlip10)
target_link_libraries( QtSlip10::qslip10)
```
## API referenceYou can read the [API reference](https://eddytheco.github.io/Qslip10/) here, or generate it yourself like
```
cmake -DBUILD_DOCS=ON ../
cmake --build . --target doxygen_docs
```## Contributing
We appreciate any contribution!
You can open an issue or request a feature.
You can open a PR to the `develop` branch and the CI/CD will take care of the rest.
Make sure to acknowledge your work, and ideas when contributing.