Skip to content
This repository has been archived by the owner on Oct 4, 2020. It is now read-only.

Latest commit

 

History

History

crypto

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
id title description
getting-started
Getting Started
C++ Crypto Library For Working With Transactions

Crypto

Development

  1. Fork the package.

  2. Clone the newly forked repository.

    git clone https://github.com/<githubusername>/cpp-crypto
  3. Next, we move into the cloned directory.

    cd cpp-crypto
  4. Build the package using CMake.

    mkdir build && cd build
    cmake -DUNIT_TEST=ON ..
    cmake --build .
  5. Now we can run the tests to see if everything is running as it should.

     ./test/ark_cpp_crypto_tests

ESP32 (PlatformIO)

pio run -e esp32_tests -d test/ -t upload