lua-bcrypt

Secure password hashing for Lua
Log | Files | Refs

commit 7bdd269314659865bd53083666c6c20f18b6d5b1
parent bf31e016413a9a2a56b98ac874f0bd2c934ffa2d
Author: Michael Savage <mikejsavage@gmail.com>
Date:   Mon,  6 Jan 2014 15:40:39 +0000

Remove -lcrypto because we don't need it

Diffstat:
Makefile | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile @@ -3,7 +3,7 @@ OBJECTS = $(patsubst %.c,%.o,$(SOURCES)) TARGET = bcrypt.so -LIBS = -lcrypto +LIBS = CFLAGS = -O2 -shared -fPIC -std=c99 -D_GNU_SOURCE -Wall -Wextra -Wno-nonnull -Wwrite-strings -Wformat=2 -DNDEBUG -Ilib/bcrypt BCRYPT_OBJECTS = lib/bcrypt/crypt_blowfish.o lib/bcrypt/x86.o lib/bcrypt/crypt_gensalt.o lib/bcrypt/wrapper.o