readme

来自「LOKI加密解密算法」· 代码 · 共 37 行

TXT
37
字号
LOKI97 C Source (Reference)===========================loki97.c	- LOKI97 Algorithm C sourceloki97.h	- LOKI97 Algorithm C header (adapted from aes.h)aestest.c	- main program to run all AES test files on LOKI97aestime.c	- main program to compute timing stats on LOKI97test_cbc.c	- simple LOKI97 CBC mode test harnesstest_cfb1.c	- simple LOKI97 CFB1 mode test harnesstest_ecb.c	- simple LOKI97 ECB mode test harnessMakefile	- Unix makefile to compile and link above programsTo build programs either use do:	makeor alternatively, compile and link each main program with loki97.o,ie do something like:	cc -c loki97.c	cc -o aestest aestest.c loki97.o	cc -o aestime aestime.c loki97.o	cc -o test_ecb test_ecb.c loki97.o etcTo run the main programs:  aestest:	change into the directory with the test files, and run		aestest		aestest -h	lists other options available  aestime:	just run with no arguments to print timing stats,		aestime  test_ecb, test_cbc, test_cfb1:	all run with no args for a single test

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?