1MEMZERO_EXPLICIT(9) Basic C Library Functions MEMZERO_EXPLICIT(9)
23
4
NAME
6memzero_explicit - Fill a region of memory (e.g. sensitive keying data)
7with 0s.
8
SYNOPSIS
10void memzero_explicit(void * s, size_t count);
11
ARGUMENTS
13s
14Pointer to the start of the area.
1516
count
17The size of the area.
18
DESCRIPTION
20memzero_explicit doesn´t need an arch-specific version as it just
21invokes the one of memset implicitly.
22
COPYRIGHT
24Kernel Hackers Manual 2.6. June 2019 MEMZERO_EXPLICIT(9)