Update lua-crypt.c

这个地方应该用G
This commit is contained in:
ahuang007
2016-06-21 15:25:08 +08:00
committed by GitHub
parent 8cd5834d28
commit 0465688403

View File

@@ -751,7 +751,7 @@ ldhexchange(lua_State *L) {
if (x64 == 0)
return luaL_error(L, "Can't be 0");
uint64_t r = powmodp(5, x64);
uint64_t r = powmodp(G, x64);
push64(L, r);
return 1;
}