Port of the eXtended Keccak Code Package

https://github.com/XKCP/XKCP
https://keccak.team/keccak.html
This commit is contained in:
Emery Hemingway
2018-11-10 11:55:21 +01:00
committed by Norman Feske
parent 4d10959476
commit 1f028daae3
12 changed files with 78 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
XKCP_SRC_DIR := $(call select_from_ports,xkcp)
ifeq ($(filter-out $(SPECS),64bit),)
INC_DIR += $(XKCP_SRC_DIR)/generic64/libkeccak.a
endif
ifeq ($(filter-out $(SPECS),32bit),)
INC_DIR += $(XKCP_SRC_DIR)/generic32/libkeccak.a
endif

0
lib/import/libkeccak.mk Normal file
View File