mirror of
https://github.com/spicetools/spicetools.git
synced 2026-03-25 11:54:22 -05:00
14 lines
255 B
C++
14 lines
255 B
C++
#pragma once
|
|
|
|
#include <cstddef>
|
|
#include <string>
|
|
|
|
namespace crypt {
|
|
extern bool INITIALIZED;
|
|
|
|
void init();
|
|
void dispose();
|
|
void random_bytes(void *data, size_t length);
|
|
std::string base64_encode(const uint8_t *ptr, size_t length);
|
|
}
|