├── .editorconfig ├── .eslintrc ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── crypt-table.js ├── hashfuncs.js ├── index.js ├── package.json └── test ├── deflate.chk ├── deflate.scx ├── imploded.chk ├── imploded.scm ├── lt-offset-from-start.scm ├── lt.scenario.chk ├── lt.scm ├── negativeoffsets.chk ├── negativeoffsets.scx ├── protected-0.chk ├── protected-0.scx ├── protected-1.chk ├── protected-1.scm ├── protected-2.chk ├── protected-2.scx ├── protected-3.chk ├── protected-3.scx ├── protected-4.chk ├── protected-4.scx ├── protected-5.chk ├── protected-5.scm ├── protected-6.chk ├── protected-6.scx ├── smallest.chk ├── smallest.scm └── test.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShieldBattery/scm-extractor/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShieldBattery/scm-extractor/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShieldBattery/scm-extractor/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShieldBattery/scm-extractor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShieldBattery/scm-extractor/HEAD/README.md -------------------------------------------------------------------------------- /crypt-table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShieldBattery/scm-extractor/HEAD/crypt-table.js -------------------------------------------------------------------------------- /hashfuncs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShieldBattery/scm-extractor/HEAD/hashfuncs.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShieldBattery/scm-extractor/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShieldBattery/scm-extractor/HEAD/package.json -------------------------------------------------------------------------------- /test/deflate.chk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShieldBattery/scm-extractor/HEAD/test/deflate.chk -------------------------------------------------------------------------------- /test/deflate.scx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShieldBattery/scm-extractor/HEAD/test/deflate.scx -------------------------------------------------------------------------------- /test/imploded.chk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShieldBattery/scm-extractor/HEAD/test/imploded.chk -------------------------------------------------------------------------------- /test/imploded.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShieldBattery/scm-extractor/HEAD/test/imploded.scm -------------------------------------------------------------------------------- /test/lt-offset-from-start.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShieldBattery/scm-extractor/HEAD/test/lt-offset-from-start.scm -------------------------------------------------------------------------------- /test/lt.scenario.chk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShieldBattery/scm-extractor/HEAD/test/lt.scenario.chk -------------------------------------------------------------------------------- /test/lt.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShieldBattery/scm-extractor/HEAD/test/lt.scm -------------------------------------------------------------------------------- /test/negativeoffsets.chk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShieldBattery/scm-extractor/HEAD/test/negativeoffsets.chk -------------------------------------------------------------------------------- /test/negativeoffsets.scx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShieldBattery/scm-extractor/HEAD/test/negativeoffsets.scx -------------------------------------------------------------------------------- /test/protected-0.chk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShieldBattery/scm-extractor/HEAD/test/protected-0.chk -------------------------------------------------------------------------------- /test/protected-0.scx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShieldBattery/scm-extractor/HEAD/test/protected-0.scx -------------------------------------------------------------------------------- /test/protected-1.chk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShieldBattery/scm-extractor/HEAD/test/protected-1.chk -------------------------------------------------------------------------------- /test/protected-1.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShieldBattery/scm-extractor/HEAD/test/protected-1.scm -------------------------------------------------------------------------------- /test/protected-2.chk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShieldBattery/scm-extractor/HEAD/test/protected-2.chk -------------------------------------------------------------------------------- /test/protected-2.scx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShieldBattery/scm-extractor/HEAD/test/protected-2.scx -------------------------------------------------------------------------------- /test/protected-3.chk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShieldBattery/scm-extractor/HEAD/test/protected-3.chk -------------------------------------------------------------------------------- /test/protected-3.scx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShieldBattery/scm-extractor/HEAD/test/protected-3.scx -------------------------------------------------------------------------------- /test/protected-4.chk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShieldBattery/scm-extractor/HEAD/test/protected-4.chk -------------------------------------------------------------------------------- /test/protected-4.scx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShieldBattery/scm-extractor/HEAD/test/protected-4.scx -------------------------------------------------------------------------------- /test/protected-5.chk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShieldBattery/scm-extractor/HEAD/test/protected-5.chk -------------------------------------------------------------------------------- /test/protected-5.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShieldBattery/scm-extractor/HEAD/test/protected-5.scm -------------------------------------------------------------------------------- /test/protected-6.chk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShieldBattery/scm-extractor/HEAD/test/protected-6.chk -------------------------------------------------------------------------------- /test/protected-6.scx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShieldBattery/scm-extractor/HEAD/test/protected-6.scx -------------------------------------------------------------------------------- /test/smallest.chk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShieldBattery/scm-extractor/HEAD/test/smallest.chk -------------------------------------------------------------------------------- /test/smallest.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShieldBattery/scm-extractor/HEAD/test/smallest.scm -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShieldBattery/scm-extractor/HEAD/test/test.js --------------------------------------------------------------------------------