mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-05-18 13:33:27 -04:00
8 lines
209 B
C++
8 lines
209 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
#include <stdlib.h>
|
|
|
|
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);
|