ios7crypt 0.0.5

legacy IOS7Crypt encryptor/decryptor
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
BIN=target/debug/ios7crypt

all: test

test: $(BIN)
	$(BIN) -e monkey
	$(BIN) -d 060b002f474b10

$(BIN): src/bin/ios7crypt.rs
	cargo build

clean:
	-rm -rf target