crypto-helpers.hpp 216 B

12345678
  1. #pragma once
  2. #include <stdlib.h>
  3. #include <cstdint>
  4. bool VerifySignature(const uint8_t *pubKey, const size_t pubKeyLen,
  5. const uint8_t *buf, const size_t len, const uint8_t *sig,
  6. const size_t sigLen);