From 6ab9c87f137b73fff4e0e0de705cf274bd44c315 Mon Sep 17 00:00:00 2001 From: lchristina26 Date: Fri, 11 Dec 2015 13:41:05 -0700 Subject: [PATCH] add comment to VXWORKS GenerateSeed() --- wolfcrypt/src/random.c | 1 + 1 file changed, 1 insertion(+) diff --git a/wolfcrypt/src/random.c b/wolfcrypt/src/random.c index e53947fdd..cb623ab37 100644 --- a/wolfcrypt/src/random.c +++ b/wolfcrypt/src/random.c @@ -1272,6 +1272,7 @@ int wc_GenerateSeed(OS_Seed* os, byte* output, word32 sz) int wc_GenerateSeed(OS_Seed* os, byte* output, word32 sz) { STATUS status; + /* RANDOM ENTORPY INJECT component must be enabled in VSB project */ status = randBytes (output, sz); if (status == ERROR) { printf("Random seed failed! Enable RANDOM ENTROPY INJECT.");