mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 05:07:42 +03:00
util.crypto: Use Lua 5.2 API for predictable buffer size
In Lua 5.3 LUAL_BUFFERSIZE is a macro computed from sizeof and is thus not known at pre-processing time, so this does not work. Since Lua 5.1 is no longer supported, we can use luaL_prepbuffsize() which is available from Lua 5.2
This commit is contained in:
parent
e893bbf681
commit
62438f482e
1 changed files with 1 additions and 6 deletions
|
@ -485,12 +485,7 @@ static int Lbuild_ecdsa_signature(lua_State *L) {
|
|||
|
||||
luaL_buffinit(L, &sigbuf);
|
||||
|
||||
// COMPAT w/ Lua 5.1
|
||||
#if LUAL_BUFFERSIZE < 128
|
||||
#error Configured LUAL_BUFFERSIZE is too small for this operation
|
||||
#endif
|
||||
|
||||
unsigned char *buffer = (unsigned char*)luaL_prepbuffer(&sigbuf);
|
||||
unsigned char *buffer = (unsigned char*)luaL_prepbuffsize(&sigbuf, rlen+slen+32);
|
||||
int len = i2d_ECDSA_SIG(sig, &buffer);
|
||||
luaL_addsize(&sigbuf, len);
|
||||
luaL_pushresult(&sigbuf);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue