freebsd-src/lib/flua/libhash/Makefile
Warner Losh f7781d030c flua: Add hash module
Add lua bindings to hashing functions. sha256 is available. sha256.new
craetes a new object. sha256.update updates the digest. sha256.digest
returns the digest as a binary string and resets the
context. sha256.hexdigest returns the digest as a string of hex digits
and then resets the cotnext.

Sponsored by:		Netflix
Differential Revision:	https://reviews.freebsd.org/D43872
2024-02-15 20:59:23 -07:00

15 lines
183 B
Makefile

SHLIB_NAME= hash.so
SHLIBDIR= ${LIBDIR}/flua
SRCS+= lhash.c
CFLAGS+= \
-I${SRCTOP}/contrib/lua/src \
-I${SRCTOP}/lib/liblua \
LIBADD+= md
MAN= hash.3lua
.include <bsd.lib.mk>