├── .gitattributes ├── README.md ├── image-sound ├── cryptoAmpli │ ├── cat.jpg │ ├── cryptoAmpli.pde │ ├── jazz.wav │ ├── loadPixels_.png │ └── rick.jpg ├── cryptoProSound │ ├── cryptoProSound.pde │ ├── gyver.wav │ ├── jazz.wav │ ├── loadPixels_.png │ ├── rick.jpg │ ├── качество нужно менять ПЕРЕД загрузкой аудио!.txt │ └── расшифровка качественных аудио может занимать пару минут.txt ├── cryptoSpectrum │ ├── cat.jpg │ ├── cryptoSpectrum.pde │ ├── fft.pde │ ├── loadPixels_.png │ ├── logo500.jpg │ ├── test1.wav │ └── test2.wav └── kek.bmp ├── image-text ├── colorTest │ └── colorTest.pde ├── crypto │ ├── appls.png │ ├── bin │ │ ├── application.windows32 │ │ │ ├── crypto.exe │ │ │ └── lib │ │ │ │ ├── controlP5.jar │ │ │ │ ├── core.jar │ │ │ │ ├── crypto.jar │ │ │ │ ├── gluegen-rt-natives-windows-i586.jar │ │ │ │ ├── gluegen-rt.jar │ │ │ │ ├── jogl-all-natives-windows-i586.jar │ │ │ │ └── jogl-all.jar │ │ └── application.windows64 │ │ │ ├── crypto.exe │ │ │ └── lib │ │ │ ├── controlP5.jar │ │ │ ├── core.jar │ │ │ ├── crypto.jar │ │ │ ├── gluegen-rt-natives-windows-amd64.jar │ │ │ ├── gluegen-rt.jar │ │ │ ├── jogl-all-natives-windows-amd64.jar │ │ │ └── jogl-all.jar │ ├── black.jpg │ ├── blackwhite.jpg │ ├── crypto.pde │ ├── old.pde │ ├── text.txt │ └── white.jpg └── cryptoText │ ├── apples.png │ ├── bin │ ├── application.windows32 │ │ ├── cryptoText.exe │ │ └── lib │ │ │ ├── controlP5.jar │ │ │ ├── core.jar │ │ │ ├── cryptoText.jar │ │ │ ├── gluegen-rt-natives-windows-i586.jar │ │ │ ├── gluegen-rt.jar │ │ │ ├── jogl-all-natives-windows-i586.jar │ │ │ └── jogl-all.jar │ └── application.windows64 │ │ ├── cryptoText.exe │ │ └── lib │ │ ├── controlP5.jar │ │ ├── core.jar │ │ ├── cryptoText.jar │ │ ├── gluegen-rt-natives-windows-amd64.jar │ │ ├── gluegen-rt.jar │ │ ├── jogl-all-natives-windows-amd64.jar │ │ └── jogl-all.jar │ ├── cat.jpg │ ├── cryptoText.pde │ ├── logo150.jpg │ ├── rick.jpg │ ├── text.txt │ └── шифровки от Гувера =) Пароль в видео │ ├── crypted_1.bmp │ ├── crypted_2.bmp │ ├── crypted_3.bmp │ └── crypted_4.bmp └── logo.bmp /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/.gitattributes -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/README.md -------------------------------------------------------------------------------- /image-sound/cryptoAmpli/cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-sound/cryptoAmpli/cat.jpg -------------------------------------------------------------------------------- /image-sound/cryptoAmpli/cryptoAmpli.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-sound/cryptoAmpli/cryptoAmpli.pde -------------------------------------------------------------------------------- /image-sound/cryptoAmpli/jazz.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-sound/cryptoAmpli/jazz.wav -------------------------------------------------------------------------------- /image-sound/cryptoAmpli/loadPixels_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-sound/cryptoAmpli/loadPixels_.png -------------------------------------------------------------------------------- /image-sound/cryptoAmpli/rick.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-sound/cryptoAmpli/rick.jpg -------------------------------------------------------------------------------- /image-sound/cryptoProSound/cryptoProSound.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-sound/cryptoProSound/cryptoProSound.pde -------------------------------------------------------------------------------- /image-sound/cryptoProSound/gyver.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-sound/cryptoProSound/gyver.wav -------------------------------------------------------------------------------- /image-sound/cryptoProSound/jazz.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-sound/cryptoProSound/jazz.wav -------------------------------------------------------------------------------- /image-sound/cryptoProSound/loadPixels_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-sound/cryptoProSound/loadPixels_.png -------------------------------------------------------------------------------- /image-sound/cryptoProSound/rick.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-sound/cryptoProSound/rick.jpg -------------------------------------------------------------------------------- /image-sound/cryptoProSound/качество нужно менять ПЕРЕД загрузкой аудио!.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /image-sound/cryptoProSound/расшифровка качественных аудио может занимать пару минут.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /image-sound/cryptoSpectrum/cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-sound/cryptoSpectrum/cat.jpg -------------------------------------------------------------------------------- /image-sound/cryptoSpectrum/cryptoSpectrum.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-sound/cryptoSpectrum/cryptoSpectrum.pde -------------------------------------------------------------------------------- /image-sound/cryptoSpectrum/fft.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-sound/cryptoSpectrum/fft.pde -------------------------------------------------------------------------------- /image-sound/cryptoSpectrum/loadPixels_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-sound/cryptoSpectrum/loadPixels_.png -------------------------------------------------------------------------------- /image-sound/cryptoSpectrum/logo500.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-sound/cryptoSpectrum/logo500.jpg -------------------------------------------------------------------------------- /image-sound/cryptoSpectrum/test1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-sound/cryptoSpectrum/test1.wav -------------------------------------------------------------------------------- /image-sound/cryptoSpectrum/test2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-sound/cryptoSpectrum/test2.wav -------------------------------------------------------------------------------- /image-sound/kek.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-sound/kek.bmp -------------------------------------------------------------------------------- /image-text/colorTest/colorTest.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-text/colorTest/colorTest.pde -------------------------------------------------------------------------------- /image-text/crypto/appls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-text/crypto/appls.png -------------------------------------------------------------------------------- /image-text/crypto/bin/application.windows32/crypto.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-text/crypto/bin/application.windows32/crypto.exe -------------------------------------------------------------------------------- /image-text/crypto/bin/application.windows32/lib/controlP5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-text/crypto/bin/application.windows32/lib/controlP5.jar -------------------------------------------------------------------------------- /image-text/crypto/bin/application.windows32/lib/core.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-text/crypto/bin/application.windows32/lib/core.jar -------------------------------------------------------------------------------- /image-text/crypto/bin/application.windows32/lib/crypto.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-text/crypto/bin/application.windows32/lib/crypto.jar -------------------------------------------------------------------------------- /image-text/crypto/bin/application.windows32/lib/gluegen-rt-natives-windows-i586.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-text/crypto/bin/application.windows32/lib/gluegen-rt-natives-windows-i586.jar -------------------------------------------------------------------------------- /image-text/crypto/bin/application.windows32/lib/gluegen-rt.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-text/crypto/bin/application.windows32/lib/gluegen-rt.jar -------------------------------------------------------------------------------- /image-text/crypto/bin/application.windows32/lib/jogl-all-natives-windows-i586.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-text/crypto/bin/application.windows32/lib/jogl-all-natives-windows-i586.jar -------------------------------------------------------------------------------- /image-text/crypto/bin/application.windows32/lib/jogl-all.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-text/crypto/bin/application.windows32/lib/jogl-all.jar -------------------------------------------------------------------------------- /image-text/crypto/bin/application.windows64/crypto.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-text/crypto/bin/application.windows64/crypto.exe -------------------------------------------------------------------------------- /image-text/crypto/bin/application.windows64/lib/controlP5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-text/crypto/bin/application.windows64/lib/controlP5.jar -------------------------------------------------------------------------------- /image-text/crypto/bin/application.windows64/lib/core.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-text/crypto/bin/application.windows64/lib/core.jar -------------------------------------------------------------------------------- /image-text/crypto/bin/application.windows64/lib/crypto.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-text/crypto/bin/application.windows64/lib/crypto.jar -------------------------------------------------------------------------------- /image-text/crypto/bin/application.windows64/lib/gluegen-rt-natives-windows-amd64.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-text/crypto/bin/application.windows64/lib/gluegen-rt-natives-windows-amd64.jar -------------------------------------------------------------------------------- /image-text/crypto/bin/application.windows64/lib/gluegen-rt.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-text/crypto/bin/application.windows64/lib/gluegen-rt.jar -------------------------------------------------------------------------------- /image-text/crypto/bin/application.windows64/lib/jogl-all-natives-windows-amd64.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-text/crypto/bin/application.windows64/lib/jogl-all-natives-windows-amd64.jar -------------------------------------------------------------------------------- /image-text/crypto/bin/application.windows64/lib/jogl-all.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-text/crypto/bin/application.windows64/lib/jogl-all.jar -------------------------------------------------------------------------------- /image-text/crypto/black.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-text/crypto/black.jpg -------------------------------------------------------------------------------- /image-text/crypto/blackwhite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-text/crypto/blackwhite.jpg -------------------------------------------------------------------------------- /image-text/crypto/crypto.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-text/crypto/crypto.pde -------------------------------------------------------------------------------- /image-text/crypto/old.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-text/crypto/old.pde -------------------------------------------------------------------------------- /image-text/crypto/text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-text/crypto/text.txt -------------------------------------------------------------------------------- /image-text/crypto/white.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-text/crypto/white.jpg -------------------------------------------------------------------------------- /image-text/cryptoText/apples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-text/cryptoText/apples.png -------------------------------------------------------------------------------- /image-text/cryptoText/bin/application.windows32/cryptoText.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-text/cryptoText/bin/application.windows32/cryptoText.exe -------------------------------------------------------------------------------- /image-text/cryptoText/bin/application.windows32/lib/controlP5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-text/cryptoText/bin/application.windows32/lib/controlP5.jar -------------------------------------------------------------------------------- /image-text/cryptoText/bin/application.windows32/lib/core.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-text/cryptoText/bin/application.windows32/lib/core.jar -------------------------------------------------------------------------------- /image-text/cryptoText/bin/application.windows32/lib/cryptoText.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-text/cryptoText/bin/application.windows32/lib/cryptoText.jar -------------------------------------------------------------------------------- /image-text/cryptoText/bin/application.windows32/lib/gluegen-rt-natives-windows-i586.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-text/cryptoText/bin/application.windows32/lib/gluegen-rt-natives-windows-i586.jar -------------------------------------------------------------------------------- /image-text/cryptoText/bin/application.windows32/lib/gluegen-rt.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-text/cryptoText/bin/application.windows32/lib/gluegen-rt.jar -------------------------------------------------------------------------------- /image-text/cryptoText/bin/application.windows32/lib/jogl-all-natives-windows-i586.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-text/cryptoText/bin/application.windows32/lib/jogl-all-natives-windows-i586.jar -------------------------------------------------------------------------------- /image-text/cryptoText/bin/application.windows32/lib/jogl-all.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-text/cryptoText/bin/application.windows32/lib/jogl-all.jar -------------------------------------------------------------------------------- /image-text/cryptoText/bin/application.windows64/cryptoText.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-text/cryptoText/bin/application.windows64/cryptoText.exe -------------------------------------------------------------------------------- /image-text/cryptoText/bin/application.windows64/lib/controlP5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-text/cryptoText/bin/application.windows64/lib/controlP5.jar -------------------------------------------------------------------------------- /image-text/cryptoText/bin/application.windows64/lib/core.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-text/cryptoText/bin/application.windows64/lib/core.jar -------------------------------------------------------------------------------- /image-text/cryptoText/bin/application.windows64/lib/cryptoText.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-text/cryptoText/bin/application.windows64/lib/cryptoText.jar -------------------------------------------------------------------------------- /image-text/cryptoText/bin/application.windows64/lib/gluegen-rt-natives-windows-amd64.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-text/cryptoText/bin/application.windows64/lib/gluegen-rt-natives-windows-amd64.jar -------------------------------------------------------------------------------- /image-text/cryptoText/bin/application.windows64/lib/gluegen-rt.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-text/cryptoText/bin/application.windows64/lib/gluegen-rt.jar -------------------------------------------------------------------------------- /image-text/cryptoText/bin/application.windows64/lib/jogl-all-natives-windows-amd64.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-text/cryptoText/bin/application.windows64/lib/jogl-all-natives-windows-amd64.jar -------------------------------------------------------------------------------- /image-text/cryptoText/bin/application.windows64/lib/jogl-all.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-text/cryptoText/bin/application.windows64/lib/jogl-all.jar -------------------------------------------------------------------------------- /image-text/cryptoText/cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-text/cryptoText/cat.jpg -------------------------------------------------------------------------------- /image-text/cryptoText/cryptoText.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-text/cryptoText/cryptoText.pde -------------------------------------------------------------------------------- /image-text/cryptoText/logo150.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-text/cryptoText/logo150.jpg -------------------------------------------------------------------------------- /image-text/cryptoText/rick.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-text/cryptoText/rick.jpg -------------------------------------------------------------------------------- /image-text/cryptoText/text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-text/cryptoText/text.txt -------------------------------------------------------------------------------- /image-text/cryptoText/шифровки от Гувера =) Пароль в видео/crypted_1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-text/cryptoText/шифровки от Гувера =) Пароль в видео/crypted_1.bmp -------------------------------------------------------------------------------- /image-text/cryptoText/шифровки от Гувера =) Пароль в видео/crypted_2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-text/cryptoText/шифровки от Гувера =) Пароль в видео/crypted_2.bmp -------------------------------------------------------------------------------- /image-text/cryptoText/шифровки от Гувера =) Пароль в видео/crypted_3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-text/cryptoText/шифровки от Гувера =) Пароль в видео/crypted_3.bmp -------------------------------------------------------------------------------- /image-text/cryptoText/шифровки от Гувера =) Пароль в видео/crypted_4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/image-text/cryptoText/шифровки от Гувера =) Пароль в видео/crypted_4.bmp -------------------------------------------------------------------------------- /logo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/crypto/HEAD/logo.bmp --------------------------------------------------------------------------------