diff --git a/lib/hx509/hxtool.c b/lib/hx509/hxtool.c index f6efe6717..48e1c49f2 100644 --- a/lib/hx509/hxtool.c +++ b/lib/hx509/hxtool.c @@ -1063,6 +1063,10 @@ info(void *opt, int argc, char **argv) if (m != NULL) printf("dh: %s\n", m->name); } + { + int ret = RAND_status(); + printf("rand: %s\n", ret == 1 ? "ok" : "not available"); + } return 0; }