mirror of
https://github.com/jedisct1/libsodium.git
synced 2024-12-23 20:15:19 -07:00
Export sodium_memzero() as this will be required for Blake2, too.
This commit is contained in:
parent
bc05a0f3d8
commit
8b728c9034
@ -104,6 +104,15 @@ provider.
|
|||||||
A custom implementation of these functions can be registered with
|
A custom implementation of these functions can be registered with
|
||||||
`randombytes_set_implementation()`.
|
`randombytes_set_implementation()`.
|
||||||
|
|
||||||
|
In addition, Sodium provides a function to securely wipe a memory
|
||||||
|
region:
|
||||||
|
|
||||||
|
void sodium_memzero(void * const pnt, const size_t size);
|
||||||
|
|
||||||
|
Warning: if a region has been allocated on the heap, you still have
|
||||||
|
to make sure that it can't get swapped to disk, possibly using
|
||||||
|
`mlock(2)`.
|
||||||
|
|
||||||
## Bindings for other languages
|
## Bindings for other languages
|
||||||
|
|
||||||
* Ruby: [RbNaCl](https://github.com/cryptosphere/rbnacl)
|
* Ruby: [RbNaCl](https://github.com/cryptosphere/rbnacl)
|
||||||
|
@ -77,6 +77,7 @@ libsodium_la_SOURCES = \
|
|||||||
randombytes/randombytes.c \
|
randombytes/randombytes.c \
|
||||||
randombytes/randombytes_salsa20_random.c \
|
randombytes/randombytes_salsa20_random.c \
|
||||||
randombytes/randombytes_sysrandom.c \
|
randombytes/randombytes_sysrandom.c \
|
||||||
|
utils.c \
|
||||||
version.c
|
version.c
|
||||||
|
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = \
|
||||||
|
@ -40,6 +40,7 @@ SODIUM_EXPORT = \
|
|||||||
sodium/randombytes.h \
|
sodium/randombytes.h \
|
||||||
sodium/randombytes_salsa20_random.h \
|
sodium/randombytes_salsa20_random.h \
|
||||||
sodium/randombytes_sysrandom.h \
|
sodium/randombytes_sysrandom.h \
|
||||||
|
sodium/utils.h \
|
||||||
sodium/version.h
|
sodium/version.h
|
||||||
|
|
||||||
EXTRA_SRC = $(SODIUM_EXPORT) \
|
EXTRA_SRC = $(SODIUM_EXPORT) \
|
||||||
|
@ -33,6 +33,7 @@
|
|||||||
#include <sodium/crypto_verify_16.h>
|
#include <sodium/crypto_verify_16.h>
|
||||||
#include <sodium/crypto_verify_32.h>
|
#include <sodium/crypto_verify_32.h>
|
||||||
#include <sodium/randombytes.h>
|
#include <sodium/randombytes.h>
|
||||||
|
#include <sodium/utils.h>
|
||||||
#include <sodium/version.h>
|
#include <sodium/version.h>
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
17
src/libsodium/include/sodium/utils.h
Normal file
17
src/libsodium/include/sodium/utils.h
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
|
||||||
|
#ifndef __SODIUM_UTILS_H__
|
||||||
|
#define __SODIUM_UTILS_H__
|
||||||
|
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
|
void sodium_memzero(void * const pnt, const size_t size);
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif
|
@ -15,6 +15,7 @@
|
|||||||
#include "crypto_hash_sha256.h"
|
#include "crypto_hash_sha256.h"
|
||||||
#include "crypto_stream_salsa20.h"
|
#include "crypto_stream_salsa20.h"
|
||||||
#include "randombytes_salsa20_random.h"
|
#include "randombytes_salsa20_random.h"
|
||||||
|
#include "utils.h"
|
||||||
|
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
# include <Windows.h>
|
# include <Windows.h>
|
||||||
@ -46,21 +47,6 @@ static Salsa20Random stream = {
|
|||||||
.initialized = 0
|
.initialized = 0
|
||||||
};
|
};
|
||||||
|
|
||||||
static void
|
|
||||||
sodium_memzero(void * const pnt, const size_t size)
|
|
||||||
{
|
|
||||||
#ifdef HAVE_SECUREZEROMEMORY
|
|
||||||
SecureZeroMemory(pnt, size);
|
|
||||||
#else
|
|
||||||
volatile unsigned char *pnt_ = (volatile unsigned char *) pnt;
|
|
||||||
size_t i = (size_t) 0U;
|
|
||||||
|
|
||||||
while (i < size) {
|
|
||||||
pnt_[i++] = 0U;
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
|
|
||||||
static uint64_t
|
static uint64_t
|
||||||
sodium_hrtime(void)
|
sodium_hrtime(void)
|
||||||
{
|
{
|
||||||
|
21
src/libsodium/utils.c
Normal file
21
src/libsodium/utils.c
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
|
||||||
|
#include "utils.h"
|
||||||
|
#ifdef _WIN32
|
||||||
|
# include <Windows.h>
|
||||||
|
# include <Wincrypt.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
|
void
|
||||||
|
sodium_memzero(void * const pnt, const size_t size)
|
||||||
|
{
|
||||||
|
#ifdef HAVE_SECUREZEROMEMORY
|
||||||
|
SecureZeroMemory(pnt, size);
|
||||||
|
#else
|
||||||
|
volatile unsigned char *pnt_ = (volatile unsigned char *) pnt;
|
||||||
|
size_t i = (size_t) 0U;
|
||||||
|
|
||||||
|
while (i < size) {
|
||||||
|
pnt_[i++] = 0U;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user