makefile
来自「非常经典的加密算法」· 代码 · 共 16 行
TXT
16 行
# Example Makefile for the optimised ANSI C Rijndael code# v2.0 CFLAGS=-Wall -O2 -DTRACE_KAT_MCT=0 -DSTRICT_ALIGN=0rijndaeltest-fst: rijndaeltest-fst.o rijndael-api-fst.o rijndael-alg-fst.orcrypt: rcrypt.o rijndael-api-fst.o rijndael-alg-fst.o# On some platforms, casting char pointers to int pointers can # cause problems. This will cause malfunctioning of the CBC Monte# Carlo tests.# In this case, STRICT_ALIGN should be set to 1. # (Of course this results in slower code.)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?