├── .gitignore ├── LICENSE ├── decode.py ├── encode.py ├── readme.md ├── requirements.txt ├── test ├── krabs.png ├── krabs2.png ├── krabsbig.png ├── scream.mp3 ├── shrek.gif ├── spongebob.gif └── test.txt └── util.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WintrCat/chessencryption/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WintrCat/chessencryption/HEAD/LICENSE -------------------------------------------------------------------------------- /decode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WintrCat/chessencryption/HEAD/decode.py -------------------------------------------------------------------------------- /encode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WintrCat/chessencryption/HEAD/encode.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WintrCat/chessencryption/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | chess 2 | flask -------------------------------------------------------------------------------- /test/krabs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WintrCat/chessencryption/HEAD/test/krabs.png -------------------------------------------------------------------------------- /test/krabs2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WintrCat/chessencryption/HEAD/test/krabs2.png -------------------------------------------------------------------------------- /test/krabsbig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WintrCat/chessencryption/HEAD/test/krabsbig.png -------------------------------------------------------------------------------- /test/scream.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WintrCat/chessencryption/HEAD/test/scream.mp3 -------------------------------------------------------------------------------- /test/shrek.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WintrCat/chessencryption/HEAD/test/shrek.gif -------------------------------------------------------------------------------- /test/spongebob.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WintrCat/chessencryption/HEAD/test/spongebob.gif -------------------------------------------------------------------------------- /test/test.txt: -------------------------------------------------------------------------------- 1 | subscribe -------------------------------------------------------------------------------- /util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WintrCat/chessencryption/HEAD/util.py --------------------------------------------------------------------------------