1
0

crypto-helpers.hpp 209 B

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