update openssl reference

This commit is contained in:
iceman1001
2025-10-17 14:34:31 +02:00
parent 439effe155
commit 6e69f8ab9d
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -516,7 +516,7 @@ static int l_iso14443b_crc(lua_State *L) {
}
/*
Simple AES 128 cbc hook up to OpenSSL.
Simple AES 128 cbc hook up to mbedtls.
params: key, input
*/
static int l_aes128decrypt_cbc(lua_State *L) {
+2 -2
View File
@@ -34,8 +34,8 @@ endif
# OS X needs linking to openssl
ifeq ($(USE_BREW),1)
MYCFLAGS += -I$(BREW_PREFIX)/opt/openssl@3/include -I$(BREW_PREFIX)/opt/openssl@3.5/include
MYLDFLAGS += -L$(BREW_PREFIX)/opt/openssl@3/lib -L$(BREW_PREFIX)/opt/openssl@3.5/lib
MYCFLAGS += -I$(BREW_PREFIX)/opt/openssl@3/include -I$(BREW_PREFIX)/opt/openssl@3.6/include
MYLDFLAGS += -L$(BREW_PREFIX)/opt/openssl@3/lib -L$(BREW_PREFIX)/opt/openssl@3.6/lib
endif
ifeq ($(USE_MACPORTS),1)