load_random_file(p1)
Reads bytes from filename and adds them to the PRNG.
static VALUE ossl_rand_load_file(VALUE self, VALUE filename) { SafeStringValue(filename); if(!RAND_load_file(RSTRING_PTR(filename), -1)) { ossl_raise(eRandomError, NULL); } return Qtrue; }