aboutsummaryrefslogtreecommitdiff
path: root/src/cryptography/nostr_secure_rng.cpp
blob: 9d9251414ffa316a710b65519de33387241af7ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#include <plog/Init.h>
#include <plog/Log.h>

#include <openssl/evp.h>
#include <openssl/rand.h>
#include <openssl/crypto.h>

#include "nostr_secure_rng.hpp"

using namespace std;
using namespace nostr::cryptography;

void NostrSecureRng::fill(void* buffer, size_t length)
{
	if (RAND_bytes((uint8_t*)buffer, length) != 1)
	{
		//TODO throw runtime exception
		PLOG_ERROR << "Failed to generate random bytes";
	}
}

inline void NostrSecureRng::fill(vector<uint8_t>& buffer)
{
	fill(buffer.data(), buffer.size());
}

void NostrSecureRng::reseed(uint32_t bufferSize)
{
	int rc = RAND_load_file("/dev/random", bufferSize);

	if (rc != bufferSize)
	{
		PLOG_WARNING << "Failed to reseed the RNG with /dev/random, falling back to /dev/urandom.";
		RAND_poll();
	}
}

void NostrSecureRng::zero(void* buffer, size_t length)
{
	OPENSSL_cleanse(buffer, length);
}

inline void NostrSecureRng::zero(vector<uint8_t>& buffer)
{
	zero(buffer.data(), buffer.size());
}