1 Star 0 Fork 0

zhi_wei_chen/rc4

Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
This repository doesn't specify license. Please pay attention to the specific project description and its upstream code dependency when using it.
Clone or Download
Makefile 345 Bytes
Copy Edit Raw Blame History
lawinse authored 2016-12-13 23:47 . get together
.PHONY: all
all: main
main: main.o RC4.o RSA.o AES.o
g++ -std=c++11 -o main main.o RC4.o RSA.o AES.o
main.o: main.cpp
g++ -std=c++11 -c main.cpp -o main.o
RC4.o: RC4.cpp
g++ -std=c++11 -c RC4.cpp -o RC4.o
AES.o: AES.cpp
g++ -std=c++11 -c AES.cpp -o AES.o
RSA.o: RSA.cpp
g++ -std=c++11 -c RSA.cpp -o RSA.o
.PHONY: clean
clean:
-rm main *.o
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zhi_wei_chen/rc4.git
git@gitee.com:zhi_wei_chen/rc4.git
zhi_wei_chen
rc4
rc4
master

Search