├── .gitignore ├── LICENSE ├── README.md ├── bin └── speaking-jpg ├── img ├── backup.jpg ├── hidden-msg-2.jpg ├── hidden-msg.jpg ├── hidden-msg.jpg.hex └── schneesturm.jpg.hex ├── package.json ├── src ├── crypt.js ├── index.js └── options.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolframHempel/speaking-jpg/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolframHempel/speaking-jpg/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolframHempel/speaking-jpg/HEAD/README.md -------------------------------------------------------------------------------- /bin/speaking-jpg: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | require('../src/index'); -------------------------------------------------------------------------------- /img/backup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolframHempel/speaking-jpg/HEAD/img/backup.jpg -------------------------------------------------------------------------------- /img/hidden-msg-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolframHempel/speaking-jpg/HEAD/img/hidden-msg-2.jpg -------------------------------------------------------------------------------- /img/hidden-msg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolframHempel/speaking-jpg/HEAD/img/hidden-msg.jpg -------------------------------------------------------------------------------- /img/hidden-msg.jpg.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolframHempel/speaking-jpg/HEAD/img/hidden-msg.jpg.hex -------------------------------------------------------------------------------- /img/schneesturm.jpg.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolframHempel/speaking-jpg/HEAD/img/schneesturm.jpg.hex -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolframHempel/speaking-jpg/HEAD/package.json -------------------------------------------------------------------------------- /src/crypt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolframHempel/speaking-jpg/HEAD/src/crypt.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolframHempel/speaking-jpg/HEAD/src/index.js -------------------------------------------------------------------------------- /src/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolframHempel/speaking-jpg/HEAD/src/options.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolframHempel/speaking-jpg/HEAD/yarn.lock --------------------------------------------------------------------------------