Bitcoin ABC 0.26.3
P2P Digital Currency
Loading...
Searching...
No Matches
zeroafterfree.h
Go to the documentation of this file.
1// Copyright (c) 2009-2010 Satoshi Nakamoto
2// Copyright (c) 2009-2015 The Bitcoin Core developers
3// Distributed under the MIT software license, see the accompanying
4// file COPYING or http://www.opensource.org/licenses/mit-license.php.
5
6#ifndef BITCOIN_SUPPORT_ALLOCATORS_ZEROAFTERFREE_H
7#define BITCOIN_SUPPORT_ALLOCATORS_ZEROAFTERFREE_H
8
9#include <support/cleanse.h>
10
11#include <memory>
12#include <vector>
13
14template <typename T>
15struct zero_after_free_allocator : public std::allocator<T> {
16 using base = std::allocator<T>;
17 using traits = std::allocator_traits<base>;
18 using size_type = typename traits::size_type;
19 using difference_type = typename traits::difference_type;
20 using pointer = typename traits::pointer;
21 using const_pointer = typename traits::const_pointer;
22 using value_type = typename traits::value_type;
26 template <typename U>
30 template <typename Other> struct rebind {
32 };
33
34 void deallocate(T *p, std::size_t n) {
35 if (p != nullptr) memory_cleanse(p, sizeof(T) * n);
36 std::allocator<T>::deallocate(p, n);
37 }
38};
39
42 std::vector<std::byte, zero_after_free_allocator<std::byte>>;
43
44#endif // BITCOIN_SUPPORT_ALLOCATORS_ZEROAFTERFREE_H
void memory_cleanse(void *ptr, size_t len)
Secure overwrite a buffer (possibly containing secret data) with zero-bytes.
Definition cleanse.cpp:14
T GetRand(T nMax=std::numeric_limits< T >::max()) noexcept
Generate a uniform random integer of type T in the range [0..nMax) nMax defaults to std::numeric_limi...
Definition random.h:85
zero_after_free_allocator< Other > other
typename traits::difference_type difference_type
zero_after_free_allocator(const zero_after_free_allocator< U > &a) noexcept
std::allocator< T > base
void deallocate(T *p, std::size_t n)
std::allocator_traits< base > traits
typename traits::const_pointer const_pointer
zero_after_free_allocator() noexcept
typename traits::value_type value_type
~zero_after_free_allocator() noexcept
typename traits::pointer pointer
zero_after_free_allocator(const zero_after_free_allocator &a) noexcept
typename traits::size_type size_type
std::vector< std::byte, zero_after_free_allocator< std::byte > > SerializeData
Byte-vector that clears its contents before deletion.