0
0
mirror of https://github.com/obsproject/obs-studio.git synced 2024-09-20 04:42:18 +02:00
obs-studio/UI/update/crypto-helpers.hpp
2023-02-19 01:35:56 +01:00

9 lines
216 B
C++

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