Skip to content

Commit f11de82

Browse files
Remove temporary RNG entropy audit logs (#11600)
- Remove the temporary RNG entropy audit now that #10454 is complete. Fixes #10454 Fixes #10526 Fixes #10527
1 parent ca811e0 commit f11de82

File tree

1 file changed

+0
-51
lines changed

1 file changed

+0
-51
lines changed

src/platform/Entropy.cpp

-51
Original file line numberDiff line numberDiff line change
@@ -16,61 +16,12 @@
1616
* limitations under the License.
1717
*/
1818

19-
/**
20-
* @file
21-
* Provides implementations for the chip entropy sourcing functions
22-
* on the Linux platforms.
23-
*/
24-
2519
#include <crypto/CHIPCryptoPAL.h>
2620
#include <crypto/RandUtils.h>
2721
#include <lib/support/CodeUtils.h>
2822

29-
// Temporary includes for TemporaryAuditRandomPerformance()
30-
// TODO: remove once https://github.com/project-chip/connectedhomeip/issues/10454 is done.
31-
#include <lib/support/BytesToHex.h>
32-
3323
namespace chip {
3424

35-
namespace {
36-
37-
// Audit random number generator proper initialization with prints.
38-
// TODO: remove once https://github.com/project-chip/connectedhomeip/issues/10454 is done.
39-
void TemporaryAuditRandomNumberGenerator()
40-
{
41-
uint8_t buf1[16] = { 0 };
42-
uint8_t buf2[16] = { 0 };
43-
44-
VerifyOrDie(Crypto::DRBG_get_bytes(&buf1[0], sizeof(buf1)) == CHIP_NO_ERROR);
45-
VerifyOrDie(Crypto::DRBG_get_bytes(&buf2[0], sizeof(buf2)) == CHIP_NO_ERROR);
46-
47-
char hex_buf[sizeof(buf1) * 2 + 1];
48-
49-
ChipLogProgress(DeviceLayer, "AUDIT: ===== RANDOM NUMBER GENERATOR AUDIT START ====");
50-
ChipLogProgress(DeviceLayer, "AUDIT: * Validate buf1 and buf2 are <<<different every run/boot!>>>");
51-
ChipLogProgress(DeviceLayer, "AUDIT: * Validate r1 and r2 are <<<different every run/boot!>>>");
52-
53-
memset(&hex_buf[0], 0, sizeof(hex_buf));
54-
VerifyOrDie(Encoding::BytesToUppercaseHexString(&buf1[0], sizeof(buf1), &hex_buf[0], sizeof(hex_buf)) == CHIP_NO_ERROR);
55-
ChipLogProgress(DeviceLayer, "AUDIT: * buf1: %s", &hex_buf[0]);
56-
57-
memset(&hex_buf[0], 0, sizeof(hex_buf));
58-
VerifyOrDie(Encoding::BytesToUppercaseHexString(&buf2[0], sizeof(buf2), &hex_buf[0], sizeof(hex_buf)) == CHIP_NO_ERROR);
59-
ChipLogProgress(DeviceLayer, "AUDIT: * buf2: %s", &hex_buf[0]);
60-
61-
VerifyOrDieWithMsg(memcmp(&buf1[0], &buf2[0], sizeof(buf1)) != 0, DeviceLayer,
62-
"AUDIT: FAILED: buf1, buf2 are equal: DRBG_get_bytes() does not function!");
63-
64-
uint32_t r1 = Crypto::GetRandU32();
65-
uint32_t r2 = Crypto::GetRandU32();
66-
67-
ChipLogProgress(DeviceLayer, "AUDIT: * r1: 0x%08" PRIX32 " r2: 0x%08" PRIX32, r1, r2);
68-
VerifyOrDieWithMsg(r1 != r2, DeviceLayer, "AUDIT: FAILED: r1, r2 are equal: random number generator does not function!");
69-
ChipLogProgress(DeviceLayer, "AUDIT: ===== RANDOM NUMBER GENERATOR AUDIT END ====");
70-
}
71-
72-
} // namespace
73-
7425
namespace DeviceLayer {
7526
namespace Internal {
7627

@@ -80,8 +31,6 @@ CHIP_ERROR InitEntropy()
8031
ReturnErrorOnFailure(Crypto::DRBG_get_bytes((uint8_t *) &seed, sizeof(seed)));
8132
srand(seed);
8233

83-
// TODO: remove once https://github.com/project-chip/connectedhomeip/issues/10454 is done.
84-
TemporaryAuditRandomNumberGenerator();
8534
return CHIP_NO_ERROR;
8635
}
8736

0 commit comments

Comments
 (0)