16
16
* limitations under the License.
17
17
*/
18
18
19
- /* *
20
- * @file
21
- * Provides implementations for the chip entropy sourcing functions
22
- * on the Linux platforms.
23
- */
24
-
25
19
#include < crypto/CHIPCryptoPAL.h>
26
20
#include < crypto/RandUtils.h>
27
21
#include < lib/support/CodeUtils.h>
28
22
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
-
33
23
namespace chip {
34
24
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
-
74
25
namespace DeviceLayer {
75
26
namespace Internal {
76
27
@@ -80,8 +31,6 @@ CHIP_ERROR InitEntropy()
80
31
ReturnErrorOnFailure (Crypto::DRBG_get_bytes ((uint8_t *) &seed, sizeof (seed)));
81
32
srand (seed);
82
33
83
- // TODO: remove once https://github.com/project-chip/connectedhomeip/issues/10454 is done.
84
- TemporaryAuditRandomNumberGenerator ();
85
34
return CHIP_NO_ERROR;
86
35
}
87
36
0 commit comments