From 5db26948f6ec4a1604ce67f6ac463f18c3f26aaa Mon Sep 17 00:00:00 2001 From: Denis Kenzior Date: Tue, 3 Feb 2015 13:38:43 -0600 Subject: [PATCH] TODO: Add RNG task --- TODO | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/TODO b/TODO index a79f8471..5901b3b9 100644 --- a/TODO +++ b/TODO @@ -413,6 +413,19 @@ Wireless daemon Priority: Medium Complexity: C1 +- Implement a Random Number Generator utility + + For generating Nonces and other data that is required to be random, a RNG + is required. Implement a utility function that would return a requested + number of random bytes. + + AF_ALG can be used in order to obtain such data. Alternatively, on newer + kernels the sys_getrandom() system call should be used. + + Priority: High + Complexity: C1 + + Client ======