优化
This commit is contained in:
parent
abf85e1cbd
commit
d420e58926
1
Makefile
1
Makefile
@ -7,6 +7,7 @@ OBJ := sha
|
||||
|
||||
all: aes.o sha.o
|
||||
$(CC) $(CFLAGS) -o $(OBJ) $^ $(LDFLAGS)
|
||||
$(STRIP) $(OBJ)
|
||||
.c.o:
|
||||
$(CC) $(CFLAGS) -c $<
|
||||
|
||||
|
@ -20,11 +20,13 @@
|
||||
|
||||
SHA
|
||||
Shell Strict AES 128 bit encryption tool
|
||||
AUTHOR: AIXIAO@AIXIAO.ME
|
||||
Author: AIXIAO@AIXIAO.ME
|
||||
|
||||
Usage:
|
||||
-k : key
|
||||
-f : Script file
|
||||
sha [-kfh?]
|
||||
-k : Key
|
||||
-f : Script File
|
||||
-h -? : Print Help
|
||||
|
||||
|
||||
静态链接:
|
||||
|
5
aes.h
5
aes.h
@ -1,6 +1,11 @@
|
||||
#ifndef _AES_H_
|
||||
#define _AES_H_
|
||||
|
||||
#include <unistd.h>
|
||||
#include <time.h>
|
||||
#include <sys/time.h>
|
||||
#include <string.h>
|
||||
|
||||
#include <stdint.h>
|
||||
#include <stddef.h>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user