mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-09-25 17:02:22 -04:00
8 lines
209 B
C++
8 lines
209 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);
|