nullcon2023-chall-bmpass

AES-ECB bitmap encryption challenge for NullCon 2023 Berlin
git clone https://git.sinitax.com/sinitax/nullcon2023-chall-bmpass
Log | Files | Refs | sfeed.txt

Makefile (106B)


      1CFLAGS = -g
      2LDLIBS = -lraylib
      3
      4all: recover
      5
      6clean:
      7	rm -f recover
      8
      9recover: recover.c
     10
     11.PHONY: all clean