Skip to content
Snippets Groups Projects
Unverified Commit 77c9cc40 authored by Juan I Carrano's avatar Juan I Carrano Committed by GitHub
Browse files

Merge pull request #10219 from bergzand/pr/crypt/helper_add_wipe

crypto/helper: Add secure wipe function
parents 3cf4b238 73028690
No related branches found
No related tags found
No related merge requests found
...@@ -33,3 +33,12 @@ int crypto_equals(const uint8_t *a, const uint8_t *b, size_t len) ...@@ -33,3 +33,12 @@ int crypto_equals(const uint8_t *a, const uint8_t *b, size_t len)
return diff; return diff;
} }
/* Compiler should not be allowed to optimize this */
void crypto_secure_wipe(void *buf, size_t len)
{
volatile uint8_t *vbuf = (uint8_t*)buf;
for (size_t i = 0; i < len; i++) {
vbuf[i] = 0;
}
}
...@@ -49,6 +49,21 @@ void crypto_block_inc_ctr(uint8_t block[16], int L); ...@@ -49,6 +49,21 @@ void crypto_block_inc_ctr(uint8_t block[16], int L);
*/ */
int crypto_equals(const uint8_t *a, const uint8_t *b, size_t len); int crypto_equals(const uint8_t *a, const uint8_t *b, size_t len);
/**
* @brief Secure wipe function.
*
* This wipe function zeros the supplied buffer in a way that the compiler is
* not allowed to optimize. This can be used to erase secrets from memory.
*
* Note that this function on its own could be insufficient against (data
* remanence) attacks. It is outside the scope of this function to thoroughly
* shred the memory area.
*
* @param[in] buf buffer to wipe
* @param[in] len size of the buffer in bytes
*/
void crypto_secure_wipe(void *buf, size_t len);
#ifdef __cplusplus #ifdef __cplusplus
} }
#endif #endif
......
/*
* Copyright (C) 2018 Koen Zandberg
*
* This file is subject to the terms and conditions of the GNU Lesser
* General Public License v2.1. See the file LICENSE in the top level
* directory for more details.
*/
#include <string.h>
#include "embUnit/embUnit.h"
#include "crypto/helper.h"
#define VALUE 0xAA
/* Secret to wipe */
static uint8_t secret[20];
void test_crypto_wipe(void)
{
memset(secret, VALUE, sizeof(secret));
/* Wipe everything except the last byte */
crypto_secure_wipe(secret, sizeof(secret) - 1);
for (size_t i = 0; i < (sizeof(secret) - 1); i++) {
TEST_ASSERT_EQUAL_INT(0, secret[i]);
}
/* Check last byte */
TEST_ASSERT_EQUAL_INT(VALUE, secret[19]);
}
Test *tests_crypto_helper_tests(void)
{
EMB_UNIT_TESTFIXTURES(fixtures) {
new_TestFixture(test_crypto_wipe),
};
EMB_UNIT_TESTCALLER(crypto_helper_tests, NULL, NULL, fixtures);
return (Test *) &crypto_helper_tests;
}
...@@ -11,6 +11,7 @@ ...@@ -11,6 +11,7 @@
void tests_crypto(void) void tests_crypto(void)
{ {
TESTS_RUN(tests_crypto_helper_tests());
TESTS_RUN(tests_crypto_chacha_tests()); TESTS_RUN(tests_crypto_chacha_tests());
TESTS_RUN(tests_crypto_aes_tests()); TESTS_RUN(tests_crypto_aes_tests());
TESTS_RUN(tests_crypto_cipher_tests()); TESTS_RUN(tests_crypto_cipher_tests());
......
...@@ -33,6 +33,12 @@ extern "C" { ...@@ -33,6 +33,12 @@ extern "C" {
*/ */
void tests_crypto(void); void tests_crypto(void);
/**
* @brief Generates tests for helper functions
*
* @return embUnit tests
*/
Test *tests_crypto_helper_tests(void);
/** /**
* @brief Generates tests for crypto/chacha.h * @brief Generates tests for crypto/chacha.h
* *
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment