├── README.md ├── crypter.c └── src ├── crypter.h └── tools ├── aes ├── README.md ├── aes.c └── aes.h └── hexdump └── hexdump.h /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripmeep/crypter/HEAD/README.md -------------------------------------------------------------------------------- /crypter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripmeep/crypter/HEAD/crypter.c -------------------------------------------------------------------------------- /src/crypter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripmeep/crypter/HEAD/src/crypter.h -------------------------------------------------------------------------------- /src/tools/aes/README.md: -------------------------------------------------------------------------------- 1 | This code is from https://github.com/kokke/tiny-AES-c 2 | Go support them! 3 | -------------------------------------------------------------------------------- /src/tools/aes/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripmeep/crypter/HEAD/src/tools/aes/aes.c -------------------------------------------------------------------------------- /src/tools/aes/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripmeep/crypter/HEAD/src/tools/aes/aes.h -------------------------------------------------------------------------------- /src/tools/hexdump/hexdump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripmeep/crypter/HEAD/src/tools/hexdump/hexdump.h --------------------------------------------------------------------------------