diff options
author | Kim Alvefur <zash@zash.se> | 2017-01-20 11:33:31 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-01-20 11:33:31 +0100 |
commit | 7a551560615e89dfb68c89c18c43d54ceab642ed (patch) | |
tree | 5d75c63a76c54d3bdc21ffea90c6093cbf03f187 /util-src/crand.c | |
parent | 4645eae4785d0e73daf845c304b6089186eb2ed9 (diff) | |
download | prosody-7a551560615e89dfb68c89c18c43d54ceab642ed.tar.gz prosody-7a551560615e89dfb68c89c18c43d54ceab642ed.zip |
util.crand: Remove seeding
Diffstat (limited to 'util-src/crand.c')
-rw-r--r-- | util-src/crand.c | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/util-src/crand.c b/util-src/crand.c index 21079be0..6b9dc726 100644 --- a/util-src/crand.c +++ b/util-src/crand.c @@ -77,22 +77,6 @@ int Lrandom(lua_State *L) { return 1; } -#ifdef ENABLE_SEEDING -int Lseed(lua_State *L) { - size_t len; - const char *seed = lua_tolstring(L, 1, &len); - -#if defined(WITH_OPENSSL) - RAND_add(seed, len, len); - return 0; -#else - lua_pushnil(L); - lua_pushliteral(L, "not-supported"); - return 2; -#endif -} -#endif - int luaopen_util_crand(lua_State *L) { #if (LUA_VERSION_NUM > 501) luaL_checkversion(L); @@ -100,10 +84,6 @@ int luaopen_util_crand(lua_State *L) { lua_newtable(L); lua_pushcfunction(L, Lrandom); lua_setfield(L, -2, "bytes"); -#ifdef ENABLE_SEEDING - lua_pushcfunction(L, Lseed); - lua_setfield(L, -2, "seed"); -#endif #if defined(WITH_GETRANDOM) lua_pushstring(L, "Linux"); |