Merge remote-tracking branch 'upstream/master'

This commit is contained in:
victorlpgazolli 2023-03-23 20:04:04 -03:00
commit 93cbdae32a
138 changed files with 8637 additions and 5017 deletions

View file

@ -1,7 +1,7 @@
{ {
"parser": "@babel/eslint-parser", "parser": "@babel/eslint-parser",
"parserOptions": { "parserOptions": {
"ecmaVersion": 9, "ecmaVersion": 2022,
"ecmaFeatures": { "ecmaFeatures": {
"impliedStrict": true "impliedStrict": true
}, },

View file

@ -7,6 +7,7 @@ on:
pull_request: pull_request:
# The branches below must be a subset of the branches above # The branches below must be a subset of the branches above
branches: [ master ] branches: [ master ]
types: [synchronize, opened, reopened]
schedule: schedule:
- cron: '22 17 * * 5' - cron: '22 17 * * 5'
@ -14,6 +15,10 @@ jobs:
analyze: analyze:
name: Analyze name: Analyze
runs-on: ubuntu-latest runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy: strategy:
fail-fast: false fail-fast: false
@ -31,3 +36,5 @@ jobs:
- name: Perform CodeQL Analysis - name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2 uses: github/codeql-action/analyze@v2
with:
category: "/language:${{matrix.language}}"

View file

@ -32,14 +32,16 @@ jobs:
- name: Production Build - name: Production Build
if: success() if: success()
run: npx grunt prod run: npx grunt prod --msg="Version 10 is here! Read about the new features <a href='https://github.com/gchq/CyberChef/wiki/Character-encoding,-EOL-separators,-and-editor-features'>here</a>"
- name: Generate sitemap - name: Generate sitemap
run: npx grunt exec:sitemap run: npx grunt exec:sitemap
# - name: UI Tests - name: UI Tests
# if: success() if: success()
# run: xvfb-run --server-args="-screen 0 1200x800x24" npx grunt testui run: |
sudo apt-get install xvfb
xvfb-run --server-args="-screen 0 1200x800x24" npx grunt testui
- name: Prepare for GitHub Pages - name: Prepare for GitHub Pages
if: success() if: success()

View file

@ -33,6 +33,8 @@ jobs:
if: success() if: success()
run: npx grunt prod run: npx grunt prod
# - name: UI Tests - name: UI Tests
# if: success() if: success()
# run: xvfb-run --server-args="-screen 0 1200x800x24" npx grunt testui run: |
sudo apt-get install xvfb
xvfb-run --server-args="-screen 0 1200x800x24" npx grunt testui

View file

@ -34,9 +34,11 @@ jobs:
if: success() if: success()
run: npx grunt prod run: npx grunt prod
# - name: UI Tests - name: UI Tests
# if: success() if: success()
# run: xvfb-run --server-args="-screen 0 1200x800x24" npx grunt testui run: |
sudo apt-get install xvfb
xvfb-run --server-args="-screen 0 1200x800x24" npx grunt testui
- name: Upload Release Assets - name: Upload Release Assets
if: success() if: success()

View file

@ -13,6 +13,27 @@ All major and minor version changes will be documented in this file. Details of
## Details ## Details
### [10.2.0] - 2023-03-23
- Added 'Derive HKDF key' operation [@mikecat] | [#1528]
### [10.1.0] - 2023-03-23
- Added 'Levenshtein Distance' operation [@mikecat] | [#1498]
- Added 'Swap case' operation [@mikecat] | [#1499]
## [10.0.0] - 2023-03-22
- [Full details explained here](https://github.com/gchq/CyberChef/wiki/Character-encoding,-EOL-separators,-and-editor-features)
- Status bars added to the Input and Output [@n1474335] | [#1405]
- Character encoding selection added to the Input and Output [@n1474335] | [#1405]
- End of line separator selection added to the Input and Output [@n1474335] | [#1405]
- Non-printable characters are rendered as control character pictures [@n1474335] | [#1405]
- Loaded files can now be edited in the Input [@n1474335] | [#1405]
- Various editor features added such as multiple selections and bracket matching [@n1474335] | [#1405]
- Contextual help added, activated by pressing F1 while hovering over features [@n1474335] | [#1405]
- Many, many UI tests added for I/O features and operations [@n1474335] | [#1405]
<details>
<summary>Click to expand v9 minor versions</summary>
### [9.55.0] - 2022-12-09 ### [9.55.0] - 2022-12-09
- Added 'AMF Encode' and 'AMF Decode' operations [@n1474335] | [760eff4] - Added 'AMF Encode' and 'AMF Decode' operations [@n1474335] | [760eff4]
@ -181,6 +202,8 @@ All major and minor version changes will be documented in this file. Details of
- 'Parse SSH Host Key' operation added [@j433866] | [#595] - 'Parse SSH Host Key' operation added [@j433866] | [#595]
- 'Defang IP Addresses' operation added [@h345983745] | [#556] - 'Defang IP Addresses' operation added [@h345983745] | [#556]
</details>
## [9.0.0] - 2019-07-09 ## [9.0.0] - 2019-07-09
- [Multiple inputs](https://github.com/gchq/CyberChef/wiki/Multiple-Inputs) are now supported in the main web UI, allowing you to upload and process multiple files at once [@j433866] | [#566] - [Multiple inputs](https://github.com/gchq/CyberChef/wiki/Multiple-Inputs) are now supported in the main web UI, allowing you to upload and process multiple files at once [@j433866] | [#566]
- A [Node.js API](https://github.com/gchq/CyberChef/wiki/Node-API) has been implemented, meaning that CyberChef can now be used as a library, either to provide specific operations, or an entire baking environment [@d98762625] | [#291] - A [Node.js API](https://github.com/gchq/CyberChef/wiki/Node-API) has been implemented, meaning that CyberChef can now be used as a library, either to provide specific operations, or an entire baking environment [@d98762625] | [#291]
@ -342,6 +365,9 @@ All major and minor version changes will be documented in this file. Details of
[10.2.0]: https://github.com/gchq/CyberChef/releases/tag/v10.2.0
[10.1.0]: https://github.com/gchq/CyberChef/releases/tag/v10.1.0
[10.0.0]: https://github.com/gchq/CyberChef/releases/tag/v10.0.0
[9.55.0]: https://github.com/gchq/CyberChef/releases/tag/v9.55.0 [9.55.0]: https://github.com/gchq/CyberChef/releases/tag/v9.55.0
[9.54.0]: https://github.com/gchq/CyberChef/releases/tag/v9.54.0 [9.54.0]: https://github.com/gchq/CyberChef/releases/tag/v9.54.0
[9.53.0]: https://github.com/gchq/CyberChef/releases/tag/v9.53.0 [9.53.0]: https://github.com/gchq/CyberChef/releases/tag/v9.53.0
@ -592,6 +618,7 @@ All major and minor version changes will be documented in this file. Details of
[#1266]: https://github.com/gchq/CyberChef/pull/1266 [#1266]: https://github.com/gchq/CyberChef/pull/1266
[#1250]: https://github.com/gchq/CyberChef/pull/1250 [#1250]: https://github.com/gchq/CyberChef/pull/1250
[#1308]: https://github.com/gchq/CyberChef/pull/1308 [#1308]: https://github.com/gchq/CyberChef/pull/1308
[#1405]: https://github.com/gchq/CyberChef/pull/1405
[#1421]: https://github.com/gchq/CyberChef/pull/1421 [#1421]: https://github.com/gchq/CyberChef/pull/1421
[#1427]: https://github.com/gchq/CyberChef/pull/1427 [#1427]: https://github.com/gchq/CyberChef/pull/1427
[#1472]: https://github.com/gchq/CyberChef/pull/1472 [#1472]: https://github.com/gchq/CyberChef/pull/1472
@ -599,4 +626,7 @@ All major and minor version changes will be documented in this file. Details of
[#1466]: https://github.com/gchq/CyberChef/pull/1466 [#1466]: https://github.com/gchq/CyberChef/pull/1466
[#1456]: https://github.com/gchq/CyberChef/pull/1456 [#1456]: https://github.com/gchq/CyberChef/pull/1456
[#1450]: https://github.com/gchq/CyberChef/pull/1450 [#1450]: https://github.com/gchq/CyberChef/pull/1450
[#1498]: https://github.com/gchq/CyberChef/pull/1498
[#1499]: https://github.com/gchq/CyberChef/pull/1499
[#1528]: https://github.com/gchq/CyberChef/pull/1528

View file

@ -29,7 +29,7 @@ module.exports = function (grunt) {
"Creates a production-ready build. Use the --msg flag to add a compile message.", "Creates a production-ready build. Use the --msg flag to add a compile message.",
[ [
"eslint", "clean:prod", "clean:config", "exec:generateConfig", "findModules", "webpack:web", "eslint", "clean:prod", "clean:config", "exec:generateConfig", "findModules", "webpack:web",
"copy:standalone", "zip:standalone", "clean:standalone", "chmod" "copy:standalone", "zip:standalone", "clean:standalone", "exec:calcDownloadHash", "chmod"
]); ]);
grunt.registerTask("node", grunt.registerTask("node",
@ -323,6 +323,22 @@ module.exports = function (grunt) {
} }
}, },
exec: { exec: {
calcDownloadHash: {
command: function () {
switch (process.platform) {
case "darwin":
return chainCommands([
`shasum -a 256 build/prod/CyberChef_v${pkg.version}.zip | awk '{print $1;}' > build/prod/sha256digest.txt`,
`sed -i '' -e "s/DOWNLOAD_HASH_PLACEHOLDER/$(cat build/prod/sha256digest.txt)/" build/prod/index.html`
]);
default:
return chainCommands([
`sha256sum build/prod/CyberChef_v${pkg.version}.zip | awk '{print $1;}' > build/prod/sha256digest.txt`,
`sed -i -e "s/DOWNLOAD_HASH_PLACEHOLDER/$(cat build/prod/sha256digest.txt)/" build/prod/index.html`
]);
}
},
},
repoSize: { repoSize: {
command: chainCommands([ command: chainCommands([
"git ls-files | wc -l | xargs printf '\n%b\ttracked files\n'", "git ls-files | wc -l | xargs printf '\n%b\ttracked files\n'",
@ -390,13 +406,25 @@ module.exports = function (grunt) {
stdout: false, stdout: false,
}, },
fixCryptoApiImports: { fixCryptoApiImports: {
command: [ command: function () {
`[[ "$OSTYPE" == "darwin"* ]]`, switch (process.platform) {
"&&", case "darwin":
`find ./node_modules/crypto-api/src/ \\( -type d -name .git -prune \\) -o -type f -print0 | xargs -0 sed -i '' -e '/\\.mjs/!s/\\(from "\\.[^"]*\\)";/\\1.mjs";/g'`, return `find ./node_modules/crypto-api/src/ \\( -type d -name .git -prune \\) -o -type f -print0 | xargs -0 sed -i '' -e '/\\.mjs/!s/\\(from "\\.[^"]*\\)";/\\1.mjs";/g'`;
"||", default:
`find ./node_modules/crypto-api/src/ \\( -type d -name .git -prune \\) -o -type f -print0 | xargs -0 sed -i -e '/\\.mjs/!s/\\(from "\\.[^"]*\\)";/\\1.mjs";/g'` return `find ./node_modules/crypto-api/src/ \\( -type d -name .git -prune \\) -o -type f -print0 | xargs -0 sed -i -e '/\\.mjs/!s/\\(from "\\.[^"]*\\)";/\\1.mjs";/g'`;
].join(" "), }
},
stdout: false
},
fixSnackbarMarkup: {
command: function () {
switch (process.platform) {
case "darwin":
return `sed -i '' 's/<div id=snackbar-container\\/>/<div id=snackbar-container>/g' ./node_modules/snackbarjs/src/snackbar.js`;
default:
return `sed -i 's/<div id=snackbar-container\\/>/<div id=snackbar-container>/g' ./node_modules/snackbarjs/src/snackbar.js`;
}
},
stdout: false stdout: false
} }
}, },

View file

@ -1,7 +1,6 @@
# CyberChef # CyberChef
[![](https://github.com/gchq/CyberChef/workflows/Master%20Build,%20Test%20&%20Deploy/badge.svg)](https://github.com/gchq/CyberChef/actions?query=workflow%3A%22Master+Build%2C+Test+%26+Deploy%22) [![](https://github.com/gchq/CyberChef/workflows/Master%20Build,%20Test%20&%20Deploy/badge.svg)](https://github.com/gchq/CyberChef/actions?query=workflow%3A%22Master+Build%2C+Test+%26+Deploy%22)
[![Language grade: JavaScript](https://img.shields.io/lgtm/grade/javascript/g/gchq/CyberChef.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/gchq/CyberChef/context:javascript)
[![npm](https://img.shields.io/npm/v/cyberchef.svg)](https://www.npmjs.com/package/cyberchef) [![npm](https://img.shields.io/npm/v/cyberchef.svg)](https://www.npmjs.com/package/cyberchef)
[![](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/gchq/CyberChef/blob/master/LICENSE) [![](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/gchq/CyberChef/blob/master/LICENSE)
[![Gitter](https://badges.gitter.im/gchq/CyberChef.svg)](https://gitter.im/gchq/CyberChef?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge) [![Gitter](https://badges.gitter.im/gchq/CyberChef.svg)](https://gitter.im/gchq/CyberChef?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)

View file

@ -1,5 +1,6 @@
{ {
"src_folders": ["tests/browser"], "src_folders": ["tests/browser"],
"exclude": ["tests/browser/browserUtils.js"],
"output_folder": "tests/browser/output", "output_folder": "tests/browser/output",
"test_settings": { "test_settings": {

4166
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -1,6 +1,6 @@
{ {
"name": "cyberchef", "name": "cyberchef",
"version": "9.55.0", "version": "10.2.0",
"description": "The Cyber Swiss Army Knife for encryption, encoding, compression and data analysis.", "description": "The Cyber Swiss Army Knife for encryption, encoding, compression and data analysis.",
"author": "n1474335 <n1474335@gmail.com>", "author": "n1474335 <n1474335@gmail.com>",
"homepage": "https://gchq.github.io/CyberChef", "homepage": "https://gchq.github.io/CyberChef",
@ -39,49 +39,54 @@
"node >= 16" "node >= 16"
], ],
"devDependencies": { "devDependencies": {
"@babel/core": "^7.18.2", "@babel/core": "^7.21.0",
"@babel/eslint-parser": "^7.18.2", "@babel/eslint-parser": "^7.19.1",
"@babel/plugin-syntax-import-assertions": "^7.17.12", "@babel/plugin-syntax-import-assertions": "^7.20.0",
"@babel/plugin-transform-runtime": "^7.18.2", "@babel/plugin-transform-runtime": "^7.21.0",
"@babel/preset-env": "^7.18.2", "@babel/preset-env": "^7.20.2",
"@babel/runtime": "^7.18.3", "@babel/runtime": "^7.21.0",
"autoprefixer": "^10.4.7", "@codemirror/commands": "^6.2.1",
"babel-loader": "^8.2.5", "@codemirror/language": "^6.6.0",
"@codemirror/search": "^6.2.3",
"@codemirror/state": "^6.2.0",
"@codemirror/view": "^6.9.2",
"autoprefixer": "^10.4.13",
"babel-loader": "^9.1.2",
"babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-transform-builtin-extend": "1.1.2", "babel-plugin-transform-builtin-extend": "1.1.2",
"chromedriver": "^103.0.0", "chromedriver": "^110.0.0",
"cli-progress": "^3.11.1", "cli-progress": "^3.12.0",
"colors": "^1.4.0", "colors": "^1.4.0",
"copy-webpack-plugin": "^11.0.0", "copy-webpack-plugin": "^11.0.0",
"core-js": "^3.22.8", "core-js": "^3.29.0",
"css-loader": "6.7.1", "css-loader": "6.7.3",
"eslint": "^8.16.0", "eslint": "^8.35.0",
"grunt": "^1.5.3", "grunt": "^1.6.1",
"grunt-chmod": "~1.1.1", "grunt-chmod": "~1.1.1",
"grunt-concurrent": "^3.0.0", "grunt-concurrent": "^3.0.0",
"grunt-contrib-clean": "~2.0.1", "grunt-contrib-clean": "~2.0.1",
"grunt-contrib-connect": "^3.0.0", "grunt-contrib-connect": "^3.0.0",
"grunt-contrib-copy": "~1.0.0", "grunt-contrib-copy": "~1.0.0",
"grunt-contrib-watch": "^1.1.0", "grunt-contrib-watch": "^1.1.0",
"grunt-eslint": "^24.0.0", "grunt-eslint": "^24.0.1",
"grunt-exec": "~3.0.0", "grunt-exec": "~3.0.0",
"grunt-webpack": "^5.0.0", "grunt-webpack": "^5.0.0",
"grunt-zip": "^0.18.2", "grunt-zip": "^0.20.0",
"html-webpack-plugin": "^5.5.0", "html-webpack-plugin": "^5.5.0",
"imports-loader": "^4.0.0", "imports-loader": "^4.0.1",
"mini-css-extract-plugin": "2.6.0", "mini-css-extract-plugin": "2.7.3",
"modify-source-webpack-plugin": "^3.0.0", "modify-source-webpack-plugin": "^3.0.0",
"nightwatch": "^2.1.7", "nightwatch": "^2.6.16",
"postcss": "^8.4.14", "postcss": "^8.4.21",
"postcss-css-variables": "^0.18.0", "postcss-css-variables": "^0.18.0",
"postcss-import": "^14.1.0", "postcss-import": "^15.1.0",
"postcss-loader": "^7.0.0", "postcss-loader": "^7.0.2",
"prompt": "^1.3.0", "prompt": "^1.3.0",
"sitemap": "^7.1.1", "sitemap": "^7.1.1",
"terser": "^5.14.0", "terser": "^5.16.6",
"webpack": "^5.73.0", "webpack": "^5.76.0",
"webpack-bundle-analyzer": "^4.5.0", "webpack-bundle-analyzer": "^4.8.0",
"webpack-dev-server": "4.9.1", "webpack-dev-server": "4.11.1",
"webpack-node-externals": "^3.0.0", "webpack-node-externals": "^3.0.0",
"worker-loader": "^3.0.8" "worker-loader": "^3.0.8"
}, },
@ -90,15 +95,15 @@
"@babel/polyfill": "^7.12.1", "@babel/polyfill": "^7.12.1",
"@blu3r4y/lzma": "^2.3.3", "@blu3r4y/lzma": "^2.3.3",
"arrive": "^2.4.1", "arrive": "^2.4.1",
"avsc": "^5.7.4", "avsc": "^5.7.7",
"bcryptjs": "^2.4.3", "bcryptjs": "^2.4.3",
"bignumber.js": "^9.0.2", "bignumber.js": "^9.1.1",
"blakejs": "^1.2.1", "blakejs": "^1.2.1",
"bootstrap": "4.6.1", "bootstrap": "4.6.2",
"bootstrap-colorpicker": "^3.4.0", "bootstrap-colorpicker": "^3.4.0",
"bootstrap-material-design": "^4.1.3", "bootstrap-material-design": "^4.1.3",
"browserify-zlib": "^0.2.0", "browserify-zlib": "^0.2.0",
"bson": "^4.6.4", "bson": "^4.7.2",
"buffer": "^6.0.3", "buffer": "^6.0.3",
"cbor": "8.1.0", "cbor": "8.1.0",
"chi-squared": "^1.1.0", "chi-squared": "^1.1.0",
@ -107,7 +112,7 @@
"crypto-browserify": "^3.12.0", "crypto-browserify": "^3.12.0",
"crypto-js": "^4.1.1", "crypto-js": "^4.1.1",
"ctph.js": "0.0.5", "ctph.js": "0.0.5",
"d3": "7.4.4", "d3": "7.8.2",
"d3-hexbin": "^0.2.2", "d3-hexbin": "^0.2.2",
"diff": "^5.1.0", "diff": "^5.1.0",
"es6-promisify": "^7.0.0", "es6-promisify": "^7.0.0",
@ -117,28 +122,28 @@
"file-saver": "^2.0.5", "file-saver": "^2.0.5",
"flat": "^5.0.2", "flat": "^5.0.2",
"geodesy": "1.1.3", "geodesy": "1.1.3",
"highlight.js": "^11.5.1", "highlight.js": "^11.7.0",
"jimp": "^0.16.1", "jimp": "^0.16.13",
"jquery": "3.6.0", "jquery": "3.6.4",
"js-crc": "^0.2.0", "js-crc": "^0.2.0",
"js-sha3": "^0.8.0", "js-sha3": "^0.8.0",
"jsesc": "^3.0.2", "jsesc": "^3.0.2",
"json5": "^2.2.1", "json5": "^2.2.3",
"jsonpath-plus": "^7.2.0", "jsonpath-plus": "^7.2.0",
"jsonwebtoken": "^8.5.1", "jsonwebtoken": "8.5.1",
"jsqr": "^1.4.0", "jsqr": "^1.4.0",
"jsrsasign": "^10.5.23", "jsrsasign": "^10.6.1",
"kbpgp": "2.1.15", "kbpgp": "2.1.15",
"libbzip2-wasm": "0.0.4", "libbzip2-wasm": "0.0.4",
"libyara-wasm": "^1.2.1", "libyara-wasm": "^1.2.1",
"lodash": "^4.17.21", "lodash": "^4.17.21",
"loglevel": "^1.8.0", "loglevel": "^1.8.1",
"loglevel-message-prefix": "^3.0.0", "loglevel-message-prefix": "^3.0.0",
"lz-string": "^1.4.4", "lz-string": "^1.5.0",
"lz4js": "^0.2.0", "lz4js": "^0.2.0",
"markdown-it": "^13.0.1", "markdown-it": "^13.0.1",
"moment": "^2.29.3", "moment": "^2.29.4",
"moment-timezone": "^0.5.34", "moment-timezone": "^0.5.41",
"ngeohash": "^0.6.3", "ngeohash": "^0.6.3",
"node-forge": "^1.3.1", "node-forge": "^1.3.1",
"node-md6": "^0.1.0", "node-md6": "^0.1.0",
@ -150,7 +155,7 @@
"path": "^0.12.7", "path": "^0.12.7",
"popper.js": "^1.16.1", "popper.js": "^1.16.1",
"process": "^0.11.10", "process": "^0.11.10",
"protobufjs": "^6.11.3", "protobufjs": "^7.2.2",
"qr-image": "^3.2.0", "qr-image": "^3.2.0",
"reflect-metadata": "^0.1.13", "reflect-metadata": "^0.1.13",
"scryptsy": "^2.1.0", "scryptsy": "^2.1.0",
@ -159,15 +164,15 @@
"split.js": "^1.6.5", "split.js": "^1.6.5",
"ssdeep.js": "0.0.3", "ssdeep.js": "0.0.3",
"stream-browserify": "^3.0.0", "stream-browserify": "^3.0.0",
"tesseract.js": "3.0.2", "tesseract.js": "3.0.3",
"ua-parser-js": "^1.0.2", "ua-parser-js": "^1.0.34",
"unorm": "^1.6.0", "unorm": "^1.6.0",
"utf8": "^3.0.0", "utf8": "^3.0.0",
"uuid": "^9.0.0", "uuid": "^9.0.0",
"vkbeautify": "^0.99.3", "vkbeautify": "^0.99.3",
"xmldom": "^0.6.0", "xmldom": "^0.6.0",
"xpath": "0.0.32", "xpath": "0.0.32",
"xregexp": "^5.1.0", "xregexp": "^5.1.1",
"zlibjs": "^0.3.1" "zlibjs": "^0.3.1"
}, },
"scripts": { "scripts": {
@ -180,7 +185,7 @@
"testui": "npx grunt testui", "testui": "npx grunt testui",
"testuidev": "npx nightwatch --env=dev", "testuidev": "npx nightwatch --env=dev",
"lint": "npx grunt lint", "lint": "npx grunt lint",
"postinstall": "npx grunt exec:fixCryptoApiImports", "postinstall": "npx grunt exec:fixCryptoApiImports && npx grunt exec:fixSnackbarMarkup",
"newop": "node --experimental-modules --experimental-json-modules src/core/config/scripts/newOperation.mjs", "newop": "node --experimental-modules --experimental-json-modules src/core/config/scripts/newOperation.mjs",
"minor": "node --experimental-modules --experimental-json-modules src/core/config/scripts/newMinorVersion.mjs", "minor": "node --experimental-modules --experimental-json-modules src/core/config/scripts/newMinorVersion.mjs",
"getheapsize": "node -e 'console.log(`node heap limit = ${require(\"v8\").getHeapStatistics().heap_size_limit / (1024 * 1024)} Mb`)'", "getheapsize": "node -e 'console.log(`node heap limit = ${require(\"v8\").getHeapStatistics().heap_size_limit / (1024 * 1024)} Mb`)'",

View file

@ -27,8 +27,8 @@ class Chef {
* *
* @param {string|ArrayBuffer} input - The input data as a string or ArrayBuffer * @param {string|ArrayBuffer} input - The input data as a string or ArrayBuffer
* @param {Object[]} recipeConfig - The recipe configuration object * @param {Object[]} recipeConfig - The recipe configuration object
* @param {Object} options - The options object storing various user choices * @param {Object} [options={}] - The options object storing various user choices
* @param {boolean} options.attempHighlight - Whether or not to attempt highlighting * @param {string} [options.returnType] - What type to return the result as
* *
* @returns {Object} response * @returns {Object} response
* @returns {string} response.result - The output of the recipe * @returns {string} response.result - The output of the recipe
@ -37,12 +37,11 @@ class Chef {
* @returns {number} response.duration - The number of ms it took to execute the recipe * @returns {number} response.duration - The number of ms it took to execute the recipe
* @returns {number} response.error - The error object thrown by a failed operation (false if no error) * @returns {number} response.error - The error object thrown by a failed operation (false if no error)
*/ */
async bake(input, recipeConfig, options) { async bake(input, recipeConfig, options={}) {
log.debug("Chef baking"); log.debug("Chef baking");
const startTime = Date.now(), const startTime = Date.now(),
recipe = new Recipe(recipeConfig), recipe = new Recipe(recipeConfig),
containsFc = recipe.containsFlowControl(), containsFc = recipe.containsFlowControl();
notUTF8 = options && "treatAsUtf8" in options && !options.treatAsUtf8;
let error = false, let error = false,
progress = 0; progress = 0;
@ -68,20 +67,13 @@ class Chef {
// Present the raw result // Present the raw result
await recipe.present(this.dish); await recipe.present(this.dish);
// Depending on the size of the output, we may send it back as a string or an ArrayBuffer.
// This can prevent unnecessary casting as an ArrayBuffer can be easily downloaded as a file.
// The threshold is specified in KiB.
const threshold = (options.ioDisplayThreshold || 1024) * 1024;
const returnType = const returnType =
this.dish.type === Dish.HTML ? this.dish.type === Dish.HTML ? Dish.HTML :
Dish.HTML : options?.returnType ? options.returnType : Dish.ARRAY_BUFFER;
this.dish.size > threshold ?
Dish.ARRAY_BUFFER :
Dish.STRING;
return { return {
dish: rawDish, dish: rawDish,
result: await this.dish.get(returnType, notUTF8), result: await this.dish.get(returnType),
type: Dish.enumLookup(this.dish.type), type: Dish.enumLookup(this.dish.type),
progress: progress, progress: progress,
duration: Date.now() - startTime, duration: Date.now() - startTime,

View file

@ -9,16 +9,8 @@
import Chef from "./Chef.mjs"; import Chef from "./Chef.mjs";
import OperationConfig from "./config/OperationConfig.json" assert {type: "json"}; import OperationConfig from "./config/OperationConfig.json" assert {type: "json"};
import OpModules from "./config/modules/OpModules.mjs"; import OpModules from "./config/modules/OpModules.mjs";
// Add ">" to the start of all log messages in the Chef Worker
import loglevelMessagePrefix from "loglevel-message-prefix"; import loglevelMessagePrefix from "loglevel-message-prefix";
loglevelMessagePrefix(log, {
prefixes: [],
staticPrefixes: [">"],
prefixFormat: "%p"
});
// Set up Chef instance // Set up Chef instance
self.chef = new Chef(); self.chef = new Chef();
@ -56,7 +48,7 @@ self.postMessage({
self.addEventListener("message", function(e) { self.addEventListener("message", function(e) {
// Handle message // Handle message
const r = e.data; const r = e.data;
log.debug("ChefWorker receiving command '" + r.action + "'"); log.debug(`Receiving command '${r.action}'`);
switch (r.action) { switch (r.action) {
case "bake": case "bake":
@ -86,6 +78,12 @@ self.addEventListener("message", function(e) {
case "setLogLevel": case "setLogLevel":
log.setLevel(r.data, false); log.setLevel(r.data, false);
break; break;
case "setLogPrefix":
loglevelMessagePrefix(log, {
prefixes: [],
staticPrefixes: [r.data]
});
break;
default: default:
break; break;
} }
@ -101,14 +99,17 @@ async function bake(data) {
// Ensure the relevant modules are loaded // Ensure the relevant modules are loaded
self.loadRequiredModules(data.recipeConfig); self.loadRequiredModules(data.recipeConfig);
try { try {
self.inputNum = (data.inputNum !== undefined) ? data.inputNum : -1; self.inputNum = data.inputNum === undefined ? -1 : data.inputNum;
const response = await self.chef.bake( const response = await self.chef.bake(
data.input, // The user's input data.input, // The user's input
data.recipeConfig, // The configuration of the recipe data.recipeConfig, // The configuration of the recipe
data.options // Options set by the user data.options // Options set by the user
); );
const transferable = (data.input instanceof ArrayBuffer) ? [data.input] : undefined; const transferable = (response.dish.value instanceof ArrayBuffer) ?
[response.dish.value] :
undefined;
self.postMessage({ self.postMessage({
action: "bakeComplete", action: "bakeComplete",
data: Object.assign(response, { data: Object.assign(response, {
@ -186,7 +187,7 @@ async function getDishTitle(data) {
* *
* @param {Object[]} recipeConfig * @param {Object[]} recipeConfig
* @param {string} direction * @param {string} direction
* @param {Object} pos - The position object for the highlight. * @param {Object[]} pos - The position object for the highlight.
* @param {number} pos.start - The start offset. * @param {number} pos.start - The start offset.
* @param {number} pos.end - The end offset. * @param {number} pos.end - The end offset.
*/ */

View file

@ -128,10 +128,9 @@ class Dish {
* If running in a browser, get is asynchronous. * If running in a browser, get is asynchronous.
* *
* @param {number} type - The data type of value, see Dish enums. * @param {number} type - The data type of value, see Dish enums.
* @param {boolean} [notUTF8=false] - Do not treat strings as UTF8.
* @returns {* | Promise} - (Browser) A promise | (Node) value of dish in given type * @returns {* | Promise} - (Browser) A promise | (Node) value of dish in given type
*/ */
get(type, notUTF8=false) { get(type) {
if (typeof type === "string") { if (typeof type === "string") {
type = Dish.typeEnum(type); type = Dish.typeEnum(type);
} }
@ -140,13 +139,13 @@ class Dish {
// Node environment => _translate is sync // Node environment => _translate is sync
if (isNodeEnvironment()) { if (isNodeEnvironment()) {
this._translate(type, notUTF8); this._translate(type);
return this.value; return this.value;
// Browser environment => _translate is async // Browser environment => _translate is async
} else { } else {
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
this._translate(type, notUTF8) this._translate(type)
.then(() => { .then(() => {
resolve(this.value); resolve(this.value);
}) })
@ -190,12 +189,11 @@ class Dish {
* @Node * @Node
* *
* @param {number} type - The data type of value, see Dish enums. * @param {number} type - The data type of value, see Dish enums.
* @param {boolean} [notUTF8=false] - Do not treat strings as UTF8.
* @returns {Dish | Promise} - (Browser) A promise | (Node) value of dish in given type * @returns {Dish | Promise} - (Browser) A promise | (Node) value of dish in given type
*/ */
presentAs(type, notUTF8=false) { presentAs(type) {
const clone = this.clone(); const clone = this.clone();
return clone.get(type, notUTF8); return clone.get(type);
} }
@ -414,17 +412,16 @@ class Dish {
* If running in the browser, _translate is asynchronous. * If running in the browser, _translate is asynchronous.
* *
* @param {number} toType - The data type of value, see Dish enums. * @param {number} toType - The data type of value, see Dish enums.
* @param {boolean} [notUTF8=false] - Do not treat strings as UTF8.
* @returns {Promise || undefined} * @returns {Promise || undefined}
*/ */
_translate(toType, notUTF8=false) { _translate(toType) {
log.debug(`Translating Dish from ${Dish.enumLookup(this.type)} to ${Dish.enumLookup(toType)}`); log.debug(`Translating Dish from ${Dish.enumLookup(this.type)} to ${Dish.enumLookup(toType)}`);
// Node environment => translate is sync // Node environment => translate is sync
if (isNodeEnvironment()) { if (isNodeEnvironment()) {
this._toArrayBuffer(); this._toArrayBuffer();
this.type = Dish.ARRAY_BUFFER; this.type = Dish.ARRAY_BUFFER;
this._fromArrayBuffer(toType, notUTF8); this._fromArrayBuffer(toType);
// Browser environment => translate is async // Browser environment => translate is async
} else { } else {
@ -486,18 +483,17 @@ class Dish {
* Convert this.value to the given type from ArrayBuffer * Convert this.value to the given type from ArrayBuffer
* *
* @param {number} toType - the Dish enum to convert to * @param {number} toType - the Dish enum to convert to
* @param {boolean} [notUTF8=false] - Do not treat strings as UTF8.
*/ */
_fromArrayBuffer(toType, notUTF8) { _fromArrayBuffer(toType) {
// Using 'bind' here to allow this.value to be mutated within translation functions // Using 'bind' here to allow this.value to be mutated within translation functions
const toTypeFunctions = { const toTypeFunctions = {
[Dish.STRING]: () => DishString.fromArrayBuffer.bind(this)(notUTF8), [Dish.STRING]: () => DishString.fromArrayBuffer.bind(this)(),
[Dish.NUMBER]: () => DishNumber.fromArrayBuffer.bind(this)(notUTF8), [Dish.NUMBER]: () => DishNumber.fromArrayBuffer.bind(this)(),
[Dish.HTML]: () => DishHTML.fromArrayBuffer.bind(this)(notUTF8), [Dish.HTML]: () => DishHTML.fromArrayBuffer.bind(this)(),
[Dish.ARRAY_BUFFER]: () => {}, [Dish.ARRAY_BUFFER]: () => {},
[Dish.BIG_NUMBER]: () => DishBigNumber.fromArrayBuffer.bind(this)(notUTF8), [Dish.BIG_NUMBER]: () => DishBigNumber.fromArrayBuffer.bind(this)(),
[Dish.JSON]: () => DishJSON.fromArrayBuffer.bind(this)(notUTF8), [Dish.JSON]: () => DishJSON.fromArrayBuffer.bind(this)(),
[Dish.FILE]: () => DishFile.fromArrayBuffer.bind(this)(), [Dish.FILE]: () => DishFile.fromArrayBuffer.bind(this)(),
[Dish.LIST_FILE]: () => DishListFile.fromArrayBuffer.bind(this)(), [Dish.LIST_FILE]: () => DishListFile.fromArrayBuffer.bind(this)(),
[Dish.BYTE_ARRAY]: () => DishByteArray.fromArrayBuffer.bind(this)(), [Dish.BYTE_ARRAY]: () => DishByteArray.fromArrayBuffer.bind(this)(),

View file

@ -230,14 +230,12 @@ class Recipe {
this.lastRunOp = op; this.lastRunOp = op;
} catch (err) { } catch (err) {
// Return expected errors as output // Return expected errors as output
if (err instanceof OperationError || if (err instanceof OperationError || err?.type === "OperationError") {
(err.type && err.type === "OperationError")) {
// Cannot rely on `err instanceof OperationError` here as extending // Cannot rely on `err instanceof OperationError` here as extending
// native types is not fully supported yet. // native types is not fully supported yet.
dish.set(err.message, "string"); dish.set(err.message, "string");
return i; return i;
} else if (err instanceof DishError || } else if (err instanceof DishError || err?.type === "DishError") {
(err.type && err.type === "DishError")) {
dish.set(err.message, "string"); dish.set(err.message, "string");
return i; return i;
} else { } else {

View file

@ -4,6 +4,8 @@
* @license Apache-2.0 * @license Apache-2.0
*/ */
// loglevel import required for Node API
import log from "loglevel";
import utf8 from "utf8"; import utf8 from "utf8";
import {fromBase64, toBase64} from "./lib/Base64.mjs"; import {fromBase64, toBase64} from "./lib/Base64.mjs";
import {fromHex} from "./lib/Hex.mjs"; import {fromHex} from "./lib/Hex.mjs";
@ -174,17 +176,13 @@ class Utils {
* @returns {string} * @returns {string}
*/ */
static printable(str, preserveWs=false, onlyAscii=false) { static printable(str, preserveWs=false, onlyAscii=false) {
if (isWebEnvironment() && window.app && !window.app.options.treatAsUtf8) {
str = Utils.byteArrayToChars(Utils.strToByteArray(str));
}
if (onlyAscii) { if (onlyAscii) {
return str.replace(/[^\x20-\x7f]/g, "."); return str.replace(/[^\x20-\x7f]/g, ".");
} }
// eslint-disable-next-line no-misleading-character-class // eslint-disable-next-line no-misleading-character-class
const re = /[\0-\x08\x0B-\x0C\x0E-\x1F\x7F-\x9F\xAD\u0378\u0379\u037F-\u0383\u038B\u038D\u03A2\u0528-\u0530\u0557\u0558\u0560\u0588\u058B-\u058E\u0590\u05C8-\u05CF\u05EB-\u05EF\u05F5-\u0605\u061C\u061D\u06DD\u070E\u070F\u074B\u074C\u07B2-\u07BF\u07FB-\u07FF\u082E\u082F\u083F\u085C\u085D\u085F-\u089F\u08A1\u08AD-\u08E3\u08FF\u0978\u0980\u0984\u098D\u098E\u0991\u0992\u09A9\u09B1\u09B3-\u09B5\u09BA\u09BB\u09C5\u09C6\u09C9\u09CA\u09CF-\u09D6\u09D8-\u09DB\u09DE\u09E4\u09E5\u09FC-\u0A00\u0A04\u0A0B-\u0A0E\u0A11\u0A12\u0A29\u0A31\u0A34\u0A37\u0A3A\u0A3B\u0A3D\u0A43-\u0A46\u0A49\u0A4A\u0A4E-\u0A50\u0A52-\u0A58\u0A5D\u0A5F-\u0A65\u0A76-\u0A80\u0A84\u0A8E\u0A92\u0AA9\u0AB1\u0AB4\u0ABA\u0ABB\u0AC6\u0ACA\u0ACE\u0ACF\u0AD1-\u0ADF\u0AE4\u0AE5\u0AF2-\u0B00\u0B04\u0B0D\u0B0E\u0B11\u0B12\u0B29\u0B31\u0B34\u0B3A\u0B3B\u0B45\u0B46\u0B49\u0B4A\u0B4E-\u0B55\u0B58-\u0B5B\u0B5E\u0B64\u0B65\u0B78-\u0B81\u0B84\u0B8B-\u0B8D\u0B91\u0B96-\u0B98\u0B9B\u0B9D\u0BA0-\u0BA2\u0BA5-\u0BA7\u0BAB-\u0BAD\u0BBA-\u0BBD\u0BC3-\u0BC5\u0BC9\u0BCE\u0BCF\u0BD1-\u0BD6\u0BD8-\u0BE5\u0BFB-\u0C00\u0C04\u0C0D\u0C11\u0C29\u0C34\u0C3A-\u0C3C\u0C45\u0C49\u0C4E-\u0C54\u0C57\u0C5A-\u0C5F\u0C64\u0C65\u0C70-\u0C77\u0C80\u0C81\u0C84\u0C8D\u0C91\u0CA9\u0CB4\u0CBA\u0CBB\u0CC5\u0CC9\u0CCE-\u0CD4\u0CD7-\u0CDD\u0CDF\u0CE4\u0CE5\u0CF0\u0CF3-\u0D01\u0D04\u0D0D\u0D11\u0D3B\u0D3C\u0D45\u0D49\u0D4F-\u0D56\u0D58-\u0D5F\u0D64\u0D65\u0D76-\u0D78\u0D80\u0D81\u0D84\u0D97-\u0D99\u0DB2\u0DBC\u0DBE\u0DBF\u0DC7-\u0DC9\u0DCB-\u0DCE\u0DD5\u0DD7\u0DE0-\u0DF1\u0DF5-\u0E00\u0E3B-\u0E3E\u0E5C-\u0E80\u0E83\u0E85\u0E86\u0E89\u0E8B\u0E8C\u0E8E-\u0E93\u0E98\u0EA0\u0EA4\u0EA6\u0EA8\u0EA9\u0EAC\u0EBA\u0EBE\u0EBF\u0EC5\u0EC7\u0ECE\u0ECF\u0EDA\u0EDB\u0EE0-\u0EFF\u0F48\u0F6D-\u0F70\u0F98\u0FBD\u0FCD\u0FDB-\u0FFF\u10C6\u10C8-\u10CC\u10CE\u10CF\u1249\u124E\u124F\u1257\u1259\u125E\u125F\u1289\u128E\u128F\u12B1\u12B6\u12B7\u12BF\u12C1\u12C6\u12C7\u12D7\u1311\u1316\u1317\u135B\u135C\u137D-\u137F\u139A-\u139F\u13F5-\u13FF\u169D-\u169F\u16F1-\u16FF\u170D\u1715-\u171F\u1737-\u173F\u1754-\u175F\u176D\u1771\u1774-\u177F\u17DE\u17DF\u17EA-\u17EF\u17FA-\u17FF\u180F\u181A-\u181F\u1878-\u187F\u18AB-\u18AF\u18F6-\u18FF\u191D-\u191F\u192C-\u192F\u193C-\u193F\u1941-\u1943\u196E\u196F\u1975-\u197F\u19AC-\u19AF\u19CA-\u19CF\u19DB-\u19DD\u1A1C\u1A1D\u1A5F\u1A7D\u1A7E\u1A8A-\u1A8F\u1A9A-\u1A9F\u1AAE-\u1AFF\u1B4C-\u1B4F\u1B7D-\u1B7F\u1BF4-\u1BFB\u1C38-\u1C3A\u1C4A-\u1C4C\u1C80-\u1CBF\u1CC8-\u1CCF\u1CF7-\u1CFF\u1DE7-\u1DFB\u1F16\u1F17\u1F1E\u1F1F\u1F46\u1F47\u1F4E\u1F4F\u1F58\u1F5A\u1F5C\u1F5E\u1F7E\u1F7F\u1FB5\u1FC5\u1FD4\u1FD5\u1FDC\u1FF0\u1FF1\u1FF5\u1FFF\u200B-\u200F\u202A-\u202E\u2060-\u206F\u2072\u2073\u208F\u209D-\u209F\u20BB-\u20CF\u20F1-\u20FF\u218A-\u218F\u23F4-\u23FF\u2427-\u243F\u244B-\u245F\u2700\u2B4D-\u2B4F\u2B5A-\u2BFF\u2C2F\u2C5F\u2CF4-\u2CF8\u2D26\u2D28-\u2D2C\u2D2E\u2D2F\u2D68-\u2D6E\u2D71-\u2D7E\u2D97-\u2D9F\u2DA7\u2DAF\u2DB7\u2DBF\u2DC7\u2DCF\u2DD7\u2DDF\u2E3C-\u2E7F\u2E9A\u2EF4-\u2EFF\u2FD6-\u2FEF\u2FFC-\u2FFF\u3040\u3097\u3098\u3100-\u3104\u312E-\u3130\u318F\u31BB-\u31BF\u31E4-\u31EF\u321F\u32FF\u4DB6-\u4DBF\u9FCD-\u9FFF\uA48D-\uA48F\uA4C7-\uA4CF\uA62C-\uA63F\uA698-\uA69E\uA6F8-\uA6FF\uA78F\uA794-\uA79F\uA7AB-\uA7F7\uA82C-\uA82F\uA83A-\uA83F\uA878-\uA87F\uA8C5-\uA8CD\uA8DA-\uA8DF\uA8FC-\uA8FF\uA954-\uA95E\uA97D-\uA97F\uA9CE\uA9DA-\uA9DD\uA9E0-\uA9FF\uAA37-\uAA3F\uAA4E\uAA4F\uAA5A\uAA5B\uAA7C-\uAA7F\uAAC3-\uAADA\uAAF7-\uAB00\uAB07\uAB08\uAB0F\uAB10\uAB17-\uAB1F\uAB27\uAB2F-\uABBF\uABEE\uABEF\uABFA-\uABFF\uD7A4-\uD7AF\uD7C7-\uD7CA\uD7FC-\uD7FF\uE000-\uF8FF\uFA6E\uFA6F\uFADA-\uFAFF\uFB07-\uFB12\uFB18-\uFB1C\uFB37\uFB3D\uFB3F\uFB42\uFB45\uFBC2-\uFBD2\uFD40-\uFD4F\uFD90\uFD91\uFDC8-\uFDEF\uFDFE\uFDFF\uFE1A-\uFE1F\uFE27-\uFE2F\uFE53\uFE67\uFE6C-\uFE6F\uFE75\uFEFD-\uFF00\uFFBF-\uFFC1\uFFC8\uFFC9\uFFD0\uFFD1\uFFD8\uFFD9\uFFDD-\uFFDF\uFFE7\uFFEF-\uFFFB\uFFFE\uFFFF]/g; const re = /[\0-\x08\x0B-\x0C\x0E-\x1F\x7F-\x9F\xAD\u0378\u0379\u037F-\u0383\u038B\u038D\u03A2\u0528-\u0530\u0557\u0558\u0560\u0588\u058B-\u058E\u0590\u05C8-\u05CF\u05EB-\u05EF\u05F5-\u0605\u061C\u061D\u06DD\u070E\u070F\u074B\u074C\u07B2-\u07BF\u07FB-\u07FF\u082E\u082F\u083F\u085C\u085D\u085F-\u089F\u08A1\u08AD-\u08E3\u08FF\u0978\u0980\u0984\u098D\u098E\u0991\u0992\u09A9\u09B1\u09B3-\u09B5\u09BA\u09BB\u09C5\u09C6\u09C9\u09CA\u09CF-\u09D6\u09D8-\u09DB\u09DE\u09E4\u09E5\u09FC-\u0A00\u0A04\u0A0B-\u0A0E\u0A11\u0A12\u0A29\u0A31\u0A34\u0A37\u0A3A\u0A3B\u0A3D\u0A43-\u0A46\u0A49\u0A4A\u0A4E-\u0A50\u0A52-\u0A58\u0A5D\u0A5F-\u0A65\u0A76-\u0A80\u0A84\u0A8E\u0A92\u0AA9\u0AB1\u0AB4\u0ABA\u0ABB\u0AC6\u0ACA\u0ACE\u0ACF\u0AD1-\u0ADF\u0AE4\u0AE5\u0AF2-\u0B00\u0B04\u0B0D\u0B0E\u0B11\u0B12\u0B29\u0B31\u0B34\u0B3A\u0B3B\u0B45\u0B46\u0B49\u0B4A\u0B4E-\u0B55\u0B58-\u0B5B\u0B5E\u0B64\u0B65\u0B78-\u0B81\u0B84\u0B8B-\u0B8D\u0B91\u0B96-\u0B98\u0B9B\u0B9D\u0BA0-\u0BA2\u0BA5-\u0BA7\u0BAB-\u0BAD\u0BBA-\u0BBD\u0BC3-\u0BC5\u0BC9\u0BCE\u0BCF\u0BD1-\u0BD6\u0BD8-\u0BE5\u0BFB-\u0C00\u0C04\u0C0D\u0C11\u0C29\u0C34\u0C3A-\u0C3C\u0C45\u0C49\u0C4E-\u0C54\u0C57\u0C5A-\u0C5F\u0C64\u0C65\u0C70-\u0C77\u0C80\u0C81\u0C84\u0C8D\u0C91\u0CA9\u0CB4\u0CBA\u0CBB\u0CC5\u0CC9\u0CCE-\u0CD4\u0CD7-\u0CDD\u0CDF\u0CE4\u0CE5\u0CF0\u0CF3-\u0D01\u0D04\u0D0D\u0D11\u0D3B\u0D3C\u0D45\u0D49\u0D4F-\u0D56\u0D58-\u0D5F\u0D64\u0D65\u0D76-\u0D78\u0D80\u0D81\u0D84\u0D97-\u0D99\u0DB2\u0DBC\u0DBE\u0DBF\u0DC7-\u0DC9\u0DCB-\u0DCE\u0DD5\u0DD7\u0DE0-\u0DF1\u0DF5-\u0E00\u0E3B-\u0E3E\u0E5C-\u0E80\u0E83\u0E85\u0E86\u0E89\u0E8B\u0E8C\u0E8E-\u0E93\u0E98\u0EA0\u0EA4\u0EA6\u0EA8\u0EA9\u0EAC\u0EBA\u0EBE\u0EBF\u0EC5\u0EC7\u0ECE\u0ECF\u0EDA\u0EDB\u0EE0-\u0EFF\u0F48\u0F6D-\u0F70\u0F98\u0FBD\u0FCD\u0FDB-\u0FFF\u10C6\u10C8-\u10CC\u10CE\u10CF\u1249\u124E\u124F\u1257\u1259\u125E\u125F\u1289\u128E\u128F\u12B1\u12B6\u12B7\u12BF\u12C1\u12C6\u12C7\u12D7\u1311\u1316\u1317\u135B\u135C\u137D-\u137F\u139A-\u139F\u13F5-\u13FF\u169D-\u169F\u16F1-\u16FF\u170D\u1715-\u171F\u1737-\u173F\u1754-\u175F\u176D\u1771\u1774-\u177F\u17DE\u17DF\u17EA-\u17EF\u17FA-\u17FF\u180F\u181A-\u181F\u1878-\u187F\u18AB-\u18AF\u18F6-\u18FF\u191D-\u191F\u192C-\u192F\u193C-\u193F\u1941-\u1943\u196E\u196F\u1975-\u197F\u19AC-\u19AF\u19CA-\u19CF\u19DB-\u19DD\u1A1C\u1A1D\u1A5F\u1A7D\u1A7E\u1A8A-\u1A8F\u1A9A-\u1A9F\u1AAE-\u1AFF\u1B4C-\u1B4F\u1B7D-\u1B7F\u1BF4-\u1BFB\u1C38-\u1C3A\u1C4A-\u1C4C\u1C80-\u1CBF\u1CC8-\u1CCF\u1CF7-\u1CFF\u1DE7-\u1DFB\u1F16\u1F17\u1F1E\u1F1F\u1F46\u1F47\u1F4E\u1F4F\u1F58\u1F5A\u1F5C\u1F5E\u1F7E\u1F7F\u1FB5\u1FC5\u1FD4\u1FD5\u1FDC\u1FF0\u1FF1\u1FF5\u1FFF\u200B-\u200F\u202A-\u202E\u2060-\u206F\u2072\u2073\u208F\u209D-\u209F\u20BB-\u20CF\u20F1-\u20FF\u218A-\u218F\u23F4-\u23FF\u2427-\u243F\u244B-\u245F\u2700\u2B4D-\u2B4F\u2B5A-\u2BFF\u2C2F\u2C5F\u2CF4-\u2CF8\u2D26\u2D28-\u2D2C\u2D2E\u2D2F\u2D68-\u2D6E\u2D71-\u2D7E\u2D97-\u2D9F\u2DA7\u2DAF\u2DB7\u2DBF\u2DC7\u2DCF\u2DD7\u2DDF\u2E3C-\u2E7F\u2E9A\u2EF4-\u2EFF\u2FD6-\u2FEF\u2FFC-\u2FFF\u3040\u3097\u3098\u3100-\u3104\u312E-\u3130\u318F\u31BB-\u31BF\u31E4-\u31EF\u321F\u32FF\u4DB6-\u4DBF\u9FCD-\u9FFF\uA48D-\uA48F\uA4C7-\uA4CF\uA62C-\uA63F\uA698-\uA69E\uA6F8-\uA6FF\uA78F\uA794-\uA79F\uA7AB-\uA7F7\uA82C-\uA82F\uA83A-\uA83F\uA878-\uA87F\uA8C5-\uA8CD\uA8DA-\uA8DF\uA8FC-\uA8FF\uA954-\uA95E\uA97D-\uA97F\uA9CE\uA9DA-\uA9DD\uA9E0-\uA9FF\uAA37-\uAA3F\uAA4E\uAA4F\uAA5A\uAA5B\uAA7C-\uAA7F\uAAC3-\uAADA\uAAF7-\uAB00\uAB07\uAB08\uAB0F\uAB10\uAB17-\uAB1F\uAB27\uAB2F-\uABBF\uABEE\uABEF\uABFA-\uABFF\uD7A4-\uD7AF\uD7C7-\uD7CA\uD7FC-\uD7FF\uE000-\uF8FF\uFA6E\uFA6F\uFADA-\uFAFF\uFB07-\uFB12\uFB18-\uFB1C\uFB37\uFB3D\uFB3F\uFB42\uFB45\uFBC2-\uFBD2\uFD40-\uFD4F\uFD90\uFD91\uFDC8-\uFDEF\uFDFE\uFDFF\uFE1A-\uFE1F\uFE27-\uFE2F\uFE53\uFE67\uFE6C-\uFE6F\uFE75\uFEFD-\uFF00\uFFBF-\uFFC1\uFFC8\uFFC9\uFFD0\uFFD1\uFFD8\uFFD9\uFFDD-\uFFDF\uFFE7\uFFEF-\uFFFB\uFFFE\uFFFF]/g;
const wsRe = /[\x09-\x10\x0D\u2028\u2029]/g; const wsRe = /[\x09-\x10\u2028\u2029]/g;
str = str.replace(re, "."); str = str.replace(re, ".");
if (!preserveWs) str = str.replace(wsRe, "."); if (!preserveWs) str = str.replace(wsRe, ".");
@ -192,6 +190,21 @@ class Utils {
} }
/**
* Returns a string with whitespace represented as special characters from the
* Unicode Private Use Area, which CyberChef will display as control characters.
* Private Use Area characters are in the range U+E000..U+F8FF.
* https://en.wikipedia.org/wiki/Private_Use_Areas
* @param {string} str
* @returns {string}
*/
static escapeWhitespace(str) {
return str.replace(/[\x09-\x10]/g, function(c) {
return String.fromCharCode(0xe000 + c.charCodeAt(0));
});
}
/** /**
* Parse a string entered by a user and replace escaped chars with the bytes they represent. * Parse a string entered by a user and replace escaped chars with the bytes they represent.
* *
@ -461,6 +474,9 @@ class Utils {
* Utils.strToArrayBuffer("你好"); * Utils.strToArrayBuffer("你好");
*/ */
static strToArrayBuffer(str) { static strToArrayBuffer(str) {
log.debug(`Converting string[${str?.length}] to array buffer`);
if (!str) return new ArrayBuffer;
const arr = new Uint8Array(str.length); const arr = new Uint8Array(str.length);
let i = str.length, b; let i = str.length, b;
while (i--) { while (i--) {
@ -487,17 +503,20 @@ class Utils {
* Utils.strToUtf8ArrayBuffer("你好"); * Utils.strToUtf8ArrayBuffer("你好");
*/ */
static strToUtf8ArrayBuffer(str) { static strToUtf8ArrayBuffer(str) {
const utf8Str = utf8.encode(str); log.debug(`Converting string[${str?.length}] to UTF8 array buffer`);
if (!str) return new ArrayBuffer;
if (str.length !== utf8Str.length) { const buffer = new TextEncoder("utf-8").encode(str);
if (isWorkerEnvironment()) {
if (str.length !== buffer.length) {
if (isWorkerEnvironment() && self && typeof self.setOption === "function") {
self.setOption("attemptHighlight", false); self.setOption("attemptHighlight", false);
} else if (isWebEnvironment()) { } else if (isWebEnvironment()) {
window.app.options.attemptHighlight = false; window.app.options.attemptHighlight = false;
} }
} }
return Utils.strToArrayBuffer(utf8Str); return buffer.buffer;
} }
@ -516,6 +535,8 @@ class Utils {
* Utils.strToByteArray("你好"); * Utils.strToByteArray("你好");
*/ */
static strToByteArray(str) { static strToByteArray(str) {
log.debug(`Converting string[${str?.length}] to byte array`);
if (!str) return [];
const byteArray = new Array(str.length); const byteArray = new Array(str.length);
let i = str.length, b; let i = str.length, b;
while (i--) { while (i--) {
@ -542,6 +563,8 @@ class Utils {
* Utils.strToUtf8ByteArray("你好"); * Utils.strToUtf8ByteArray("你好");
*/ */
static strToUtf8ByteArray(str) { static strToUtf8ByteArray(str) {
log.debug(`Converting string[${str?.length}] to UTF8 byte array`);
if (!str) return [];
const utf8Str = utf8.encode(str); const utf8Str = utf8.encode(str);
if (str.length !== utf8Str.length) { if (str.length !== utf8Str.length) {
@ -570,6 +593,8 @@ class Utils {
* Utils.strToCharcode("你好"); * Utils.strToCharcode("你好");
*/ */
static strToCharcode(str) { static strToCharcode(str) {
log.debug(`Converting string[${str?.length}] to charcode`);
if (!str) return [];
const charcode = []; const charcode = [];
for (let i = 0; i < str.length; i++) { for (let i = 0; i < str.length; i++) {
@ -604,20 +629,26 @@ class Utils {
* Utils.byteArrayToUtf8([228,189,160,229,165,189]); * Utils.byteArrayToUtf8([228,189,160,229,165,189]);
*/ */
static byteArrayToUtf8(byteArray) { static byteArrayToUtf8(byteArray) {
const str = Utils.byteArrayToChars(byteArray); log.debug(`Converting byte array[${byteArray?.length}] to UTF8`);
if (!byteArray || !byteArray.length) return "";
if (!(byteArray instanceof Uint8Array))
byteArray = new Uint8Array(byteArray);
try { try {
const utf8Str = utf8.decode(str); const str = new TextDecoder("utf-8", {fatal: true}).decode(byteArray);
if (str.length !== utf8Str.length) {
if (str.length !== byteArray.length) {
if (isWorkerEnvironment()) { if (isWorkerEnvironment()) {
self.setOption("attemptHighlight", false); self.setOption("attemptHighlight", false);
} else if (isWebEnvironment()) { } else if (isWebEnvironment()) {
window.app.options.attemptHighlight = false; window.app.options.attemptHighlight = false;
} }
} }
return utf8Str;
return str;
} catch (err) { } catch (err) {
// If it fails, treat it as ANSI // If it fails, treat it as ANSI
return str; return Utils.byteArrayToChars(byteArray);
} }
} }
@ -636,11 +667,13 @@ class Utils {
* Utils.byteArrayToChars([20320,22909]); * Utils.byteArrayToChars([20320,22909]);
*/ */
static byteArrayToChars(byteArray) { static byteArrayToChars(byteArray) {
if (!byteArray) return ""; log.debug(`Converting byte array[${byteArray?.length}] to chars`);
if (!byteArray || !byteArray.length) return "";
let str = ""; let str = "";
// String concatenation appears to be faster than an array join // Maxiumum arg length for fromCharCode is 65535, but the stack may already be fairly deep,
for (let i = 0; i < byteArray.length;) { // so don't get too near it.
str += String.fromCharCode(byteArray[i++]); for (let i = 0; i < byteArray.length; i += 20000) {
str += String.fromCharCode(...(byteArray.slice(i, i+20000)));
} }
return str; return str;
} }
@ -658,6 +691,8 @@ class Utils {
* Utils.arrayBufferToStr(Uint8Array.from([104,101,108,108,111]).buffer); * Utils.arrayBufferToStr(Uint8Array.from([104,101,108,108,111]).buffer);
*/ */
static arrayBufferToStr(arrayBuffer, utf8=true) { static arrayBufferToStr(arrayBuffer, utf8=true) {
log.debug(`Converting array buffer[${arrayBuffer?.byteLength}] to str`);
if (!arrayBuffer || !arrayBuffer.byteLength) return "";
const arr = new Uint8Array(arrayBuffer); const arr = new Uint8Array(arrayBuffer);
return utf8 ? Utils.byteArrayToUtf8(arr) : Utils.byteArrayToChars(arr); return utf8 ? Utils.byteArrayToUtf8(arr) : Utils.byteArrayToChars(arr);
} }
@ -789,10 +824,10 @@ class Utils {
} }
if (removeScriptAndStyle) { if (removeScriptAndStyle) {
htmlStr = recursiveRemove(/<script[^>]*>.*?<\/script[^>]*>/gi, htmlStr); htmlStr = recursiveRemove(/<script[^>]*>(\s|\S)*?<\/script[^>]*>/gi, htmlStr);
htmlStr = recursiveRemove(/<style[^>]*>.*?<\/style[^>]*>/gi, htmlStr); htmlStr = recursiveRemove(/<style[^>]*>(\s|\S)*?<\/style[^>]*>/gi, htmlStr);
} }
return htmlStr.replace(/<[^>]+>/g, ""); return recursiveRemove(/<[^>]+>/g, htmlStr);
} }
@ -800,6 +835,11 @@ class Utils {
* Escapes HTML tags in a string to stop them being rendered. * Escapes HTML tags in a string to stop them being rendered.
* https://www.owasp.org/index.php/XSS_(Cross_Site_Scripting)_Prevention_Cheat_Sheet * https://www.owasp.org/index.php/XSS_(Cross_Site_Scripting)_Prevention_Cheat_Sheet
* *
* Null bytes are a special case and are converted to a character from the Unicode
* Private Use Area, which CyberChef will display as a control character picture.
* This is done due to null bytes not being rendered or stored correctly in HTML
* DOM building.
*
* @param {string} str * @param {string} str
* @returns string * @returns string
* *
@ -814,12 +854,13 @@ class Utils {
">": "&gt;", ">": "&gt;",
'"': "&quot;", '"': "&quot;",
"'": "&#x27;", // &apos; not recommended because it's not in the HTML spec "'": "&#x27;", // &apos; not recommended because it's not in the HTML spec
"`": "&#x60;" "`": "&#x60;",
"\u0000": "\ue000"
}; };
return str.replace(/[&<>"'`]/g, function (match) { return str ? str.replace(/[&<>"'`\u0000]/g, function (match) {
return HTML_CHARS[match]; return HTML_CHARS[match];
}); }) : str;
} }
@ -841,10 +882,11 @@ class Utils {
"&quot;": '"', "&quot;": '"',
"&#x27;": "'", "&#x27;": "'",
"&#x2F;": "/", "&#x2F;": "/",
"&#x60;": "`" "&#x60;": "`",
"\ue000": "\u0000"
}; };
return str.replace(/&#?x?[a-z0-9]{2,4};/ig, function (match) { return str.replace(/(&#?x?[a-z0-9]{2,4};|\ue000)/ig, function (match) {
return HTML_CHARS[match] || match; return HTML_CHARS[match] || match;
}); });
} }

View file

@ -121,6 +121,7 @@
"Substitute", "Substitute",
"Derive PBKDF2 key", "Derive PBKDF2 key",
"Derive EVP key", "Derive EVP key",
"Derive HKDF key",
"Bcrypt", "Bcrypt",
"Scrypt", "Scrypt",
"JWT Sign", "JWT Sign",
@ -247,6 +248,7 @@
"Remove null bytes", "Remove null bytes",
"To Upper case", "To Upper case",
"To Lower case", "To Lower case",
"Swap case",
"To Case Insensitive Regex", "To Case Insensitive Regex",
"From Case Insensitive Regex", "From Case Insensitive Regex",
"Add line numbers", "Add line numbers",
@ -271,6 +273,7 @@
"Fuzzy Match", "Fuzzy Match",
"Offset checker", "Offset checker",
"Hamming Distance", "Hamming Distance",
"Levenshtein Distance",
"Convert distance", "Convert distance",
"Convert area", "Convert area",
"Convert mass", "Convert mass",

View file

@ -24,12 +24,11 @@ class DishBigNumber extends DishType {
/** /**
* convert the given value from a ArrayBuffer * convert the given value from a ArrayBuffer
* @param {boolean} notUTF8
*/ */
static fromArrayBuffer(notUTF8) { static fromArrayBuffer() {
DishBigNumber.checkForValue(this.value); DishBigNumber.checkForValue(this.value);
try { try {
this.value = new BigNumber(Utils.arrayBufferToStr(this.value, !notUTF8)); this.value = new BigNumber(Utils.arrayBufferToStr(this.value));
} catch (err) { } catch (err) {
this.value = new BigNumber(NaN); this.value = new BigNumber(NaN);
} }

View file

@ -22,11 +22,10 @@ class DishJSON extends DishType {
/** /**
* convert the given value from a ArrayBuffer * convert the given value from a ArrayBuffer
* @param {boolean} notUTF8
*/ */
static fromArrayBuffer(notUTF8) { static fromArrayBuffer() {
DishJSON.checkForValue(this.value); DishJSON.checkForValue(this.value);
this.value = JSON.parse(Utils.arrayBufferToStr(this.value, !notUTF8)); this.value = JSON.parse(Utils.arrayBufferToStr(this.value));
} }
} }

View file

@ -23,11 +23,10 @@ class DishNumber extends DishType {
/** /**
* convert the given value from a ArrayBuffer * convert the given value from a ArrayBuffer
* @param {boolean} notUTF8
*/ */
static fromArrayBuffer(notUTF8) { static fromArrayBuffer() {
DishNumber.checkForValue(this.value); DishNumber.checkForValue(this.value);
this.value = this.value ? parseFloat(Utils.arrayBufferToStr(this.value, !notUTF8)) : 0; this.value = this.value ? parseFloat(Utils.arrayBufferToStr(this.value)) : 0;
} }
} }

View file

@ -23,11 +23,10 @@ class DishString extends DishType {
/** /**
* convert the given value from a ArrayBuffer * convert the given value from a ArrayBuffer
* @param {boolean} notUTF8
*/ */
static fromArrayBuffer(notUTF8) { static fromArrayBuffer() {
DishString.checkForValue(this.value); DishString.checkForValue(this.value);
this.value = this.value ? Utils.arrayBufferToStr(this.value, !notUTF8) : ""; this.value = this.value ? Utils.arrayBufferToStr(this.value) : "";
} }
} }

View file

@ -29,9 +29,8 @@ class DishType {
/** /**
* convert the given value from a ArrayBuffer * convert the given value from a ArrayBuffer
* @param {boolean} notUTF8
*/ */
static fromArrayBuffer(notUTF8=undefined) { static fromArrayBuffer() {
throw new Error("fromArrayBuffer has not been implemented"); throw new Error("fromArrayBuffer has not been implemented");
} }
} }

View file

@ -25,12 +25,12 @@ import OperationError from "../errors/OperationError.mjs";
*/ */
export function toBase64(data, alphabet="A-Za-z0-9+/=") { export function toBase64(data, alphabet="A-Za-z0-9+/=") {
if (!data) return ""; if (!data) return "";
if (typeof data == "string") {
data = Utils.strToArrayBuffer(data);
}
if (data instanceof ArrayBuffer) { if (data instanceof ArrayBuffer) {
data = new Uint8Array(data); data = new Uint8Array(data);
} }
if (typeof data == "string") {
data = Utils.strToByteArray(data);
}
alphabet = Utils.expandAlphRange(alphabet).join(""); alphabet = Utils.expandAlphRange(alphabet).join("");
if (alphabet.length !== 64 && alphabet.length !== 65) { // Allow for padding if (alphabet.length !== 64 && alphabet.length !== 65) { // Allow for padding

View file

@ -6,10 +6,12 @@
* @license Apache-2.0 * @license Apache-2.0
*/ */
import cptable from "codepage";
/** /**
* Character encoding format mappings. * Character encoding format mappings.
*/ */
export const IO_FORMAT = { export const CHR_ENC_CODE_PAGES = {
"UTF-8 (65001)": 65001, "UTF-8 (65001)": 65001,
"UTF-7 (65000)": 65000, "UTF-7 (65000)": 65000,
"UTF-16LE (1200)": 1200, "UTF-16LE (1200)": 1200,
@ -164,6 +166,57 @@ export const IO_FORMAT = {
"Simplified Chinese GB18030 (54936)": 54936, "Simplified Chinese GB18030 (54936)": 54936,
}; };
export const CHR_ENC_SIMPLE_LOOKUP = {};
export const CHR_ENC_SIMPLE_REVERSE_LOOKUP = {};
for (const name in CHR_ENC_CODE_PAGES) {
const simpleName = name.match(/(^.+)\([\d/]+\)$/)[1];
CHR_ENC_SIMPLE_LOOKUP[simpleName] = CHR_ENC_CODE_PAGES[name];
CHR_ENC_SIMPLE_REVERSE_LOOKUP[CHR_ENC_CODE_PAGES[name]] = simpleName;
}
/**
* Returns the width of the character set for the given codepage.
* For example, UTF-8 is a Single Byte Character Set, whereas
* UTF-16 is a Double Byte Character Set.
*
* @param {number} page - The codepage number
* @returns {number}
*/
export function chrEncWidth(page) {
if (typeof page !== "number") return 0;
// Raw Bytes have a width of 1
if (page === 0) return 1;
const pageStr = page.toString();
// Confirm this page is legitimate
if (!Object.prototype.hasOwnProperty.call(CHR_ENC_SIMPLE_REVERSE_LOOKUP, pageStr))
return 0;
// Statically defined code pages
if (Object.prototype.hasOwnProperty.call(cptable, pageStr))
return cptable[pageStr].dec.length > 256 ? 2 : 1;
// Cached code pages
if (cptable.utils.cache.sbcs.includes(pageStr))
return 1;
if (cptable.utils.cache.dbcs.includes(pageStr))
return 2;
// Dynamically generated code pages
if (Object.prototype.hasOwnProperty.call(cptable.utils.magic, pageStr)) {
// Generate a single character and measure it
const a = cptable.utils.encode(page, "a");
return a.length;
}
return 0;
}
/** /**
* Unicode Normalisation Forms * Unicode Normalisation Forms
* *

View file

@ -10,8 +10,7 @@ import OperationError from "../errors/OperationError.mjs";
import jsQR from "jsqr"; import jsQR from "jsqr";
import qr from "qr-image"; import qr from "qr-image";
import Utils from "../Utils.mjs"; import Utils from "../Utils.mjs";
import jimplib from "jimp/es/index.js"; import jimp from "jimp";
const jimp = jimplib.default ? jimplib.default : jimplib;
/** /**
* Parses a QR code image from an image * Parses a QR code image from an image

View file

@ -9,8 +9,7 @@ import OperationError from "../errors/OperationError.mjs";
import { isImage } from "../lib/FileType.mjs"; import { isImage } from "../lib/FileType.mjs";
import { toBase64 } from "../lib/Base64.mjs"; import { toBase64 } from "../lib/Base64.mjs";
import { isWorkerEnvironment } from "../Utils.mjs"; import { isWorkerEnvironment } from "../Utils.mjs";
import jimplib from "jimp/es/index.js"; import jimp from "jimp";
const jimp = jimplib.default ? jimplib.default : jimplib;
/** /**
* Add Text To Image operation * Add Text To Image operation

View file

@ -10,8 +10,7 @@ import { isWorkerEnvironment } from "../Utils.mjs";
import { isImage } from "../lib/FileType.mjs"; import { isImage } from "../lib/FileType.mjs";
import { toBase64 } from "../lib/Base64.mjs"; import { toBase64 } from "../lib/Base64.mjs";
import { gaussianBlur } from "../lib/ImageManipulation.mjs"; import { gaussianBlur } from "../lib/ImageManipulation.mjs";
import jimplib from "jimp/es/index.js"; import jimp from "jimp";
const jimp = jimplib.default ? jimplib.default : jimplib;
/** /**
* Blur Image operation * Blur Image operation

View file

@ -9,8 +9,7 @@ import OperationError from "../errors/OperationError.mjs";
import { isImage } from "../lib/FileType.mjs"; import { isImage } from "../lib/FileType.mjs";
import { toBase64 } from "../lib/Base64.mjs"; import { toBase64 } from "../lib/Base64.mjs";
import { isWorkerEnvironment } from "../Utils.mjs"; import { isWorkerEnvironment } from "../Utils.mjs";
import jimplib from "jimp/es/index.js"; import jimp from "jimp";
const jimp = jimplib.default ? jimplib.default : jimplib;
/** /**
* Contain Image operation * Contain Image operation

View file

@ -8,8 +8,7 @@ import Operation from "../Operation.mjs";
import OperationError from "../errors/OperationError.mjs"; import OperationError from "../errors/OperationError.mjs";
import { isImage } from "../lib/FileType.mjs"; import { isImage } from "../lib/FileType.mjs";
import { toBase64 } from "../lib/Base64.mjs"; import { toBase64 } from "../lib/Base64.mjs";
import jimplib from "jimp/es/index.js"; import jimp from "jimp";
const jimp = jimplib.default ? jimplib.default : jimplib;
/** /**
* Convert Image Format operation * Convert Image Format operation

View file

@ -9,8 +9,7 @@ import OperationError from "../errors/OperationError.mjs";
import { isImage } from "../lib/FileType.mjs"; import { isImage } from "../lib/FileType.mjs";
import { toBase64 } from "../lib/Base64.mjs"; import { toBase64 } from "../lib/Base64.mjs";
import { isWorkerEnvironment } from "../Utils.mjs"; import { isWorkerEnvironment } from "../Utils.mjs";
import jimplib from "jimp/es/index.js"; import jimp from "jimp";
const jimp = jimplib.default ? jimplib.default : jimplib;
/** /**
* Cover Image operation * Cover Image operation

View file

@ -9,8 +9,7 @@ import OperationError from "../errors/OperationError.mjs";
import { isImage } from "../lib/FileType.mjs"; import { isImage } from "../lib/FileType.mjs";
import { toBase64 } from "../lib/Base64.mjs"; import { toBase64 } from "../lib/Base64.mjs";
import { isWorkerEnvironment } from "../Utils.mjs"; import { isWorkerEnvironment } from "../Utils.mjs";
import jimplib from "jimp/es/index.js"; import jimp from "jimp";
const jimp = jimplib.default ? jimplib.default : jimplib;
/** /**
* Crop Image operation * Crop Image operation

View file

@ -6,7 +6,7 @@
import Operation from "../Operation.mjs"; import Operation from "../Operation.mjs";
import cptable from "codepage"; import cptable from "codepage";
import {IO_FORMAT} from "../lib/ChrEnc.mjs"; import {CHR_ENC_CODE_PAGES} from "../lib/ChrEnc.mjs";
/** /**
* Decode text operation * Decode text operation
@ -26,7 +26,7 @@ class DecodeText extends Operation {
"<br><br>", "<br><br>",
"Supported charsets are:", "Supported charsets are:",
"<ul>", "<ul>",
Object.keys(IO_FORMAT).map(e => `<li>${e}</li>`).join("\n"), Object.keys(CHR_ENC_CODE_PAGES).map(e => `<li>${e}</li>`).join("\n"),
"</ul>", "</ul>",
].join("\n"); ].join("\n");
this.infoURL = "https://wikipedia.org/wiki/Character_encoding"; this.infoURL = "https://wikipedia.org/wiki/Character_encoding";
@ -36,7 +36,7 @@ class DecodeText extends Operation {
{ {
"name": "Encoding", "name": "Encoding",
"type": "option", "type": "option",
"value": Object.keys(IO_FORMAT) "value": Object.keys(CHR_ENC_CODE_PAGES)
} }
]; ];
} }
@ -47,7 +47,7 @@ class DecodeText extends Operation {
* @returns {string} * @returns {string}
*/ */
run(input, args) { run(input, args) {
const format = IO_FORMAT[args[0]]; const format = CHR_ENC_CODE_PAGES[args[0]];
return cptable.utils.decode(format, new Uint8Array(input)); return cptable.utils.decode(format, new Uint8Array(input));
} }

View file

@ -0,0 +1,138 @@
/**
* @author mikecat
* @copyright Crown Copyright 2023
* @license Apache-2.0
*/
import Operation from "../Operation.mjs";
import Utils from "../Utils.mjs";
import OperationError from "../errors/OperationError.mjs";
import CryptoApi from "crypto-api/src/crypto-api.mjs";
/**
* Derive HKDF Key operation
*/
class DeriveHKDFKey extends Operation {
/**
* DeriveHKDFKey constructor
*/
constructor() {
super();
this.name = "Derive HKDF key";
this.module = "Crypto";
this.description = "A simple Hashed Message Authenticaton Code (HMAC)-based key derivation function (HKDF), defined in RFC5869.";
this.infoURL = "https://wikipedia.org/wiki/HKDF";
this.inputType = "ArrayBuffer";
this.outputType = "string";
this.args = [
{
"name": "Salt",
"type": "toggleString",
"value": "",
"toggleValues": ["Hex", "Decimal", "Base64", "UTF8", "Latin1"]
},
{
"name": "Info",
"type": "toggleString",
"value": "",
"toggleValues": ["Hex", "Decimal", "Base64", "UTF8", "Latin1"]
},
{
"name": "Hashing function",
"type": "option",
"value": [
"MD2",
"MD4",
"MD5",
"SHA0",
"SHA1",
"SHA224",
"SHA256",
"SHA384",
"SHA512",
"SHA512/224",
"SHA512/256",
"RIPEMD128",
"RIPEMD160",
"RIPEMD256",
"RIPEMD320",
"HAS160",
"Whirlpool",
"Whirlpool-0",
"Whirlpool-T",
"Snefru"
],
"defaultIndex": 6
},
{
"name": "Extract mode",
"type": "argSelector",
"value": [
{
"name": "with salt",
"on": [0]
},
{
"name": "no salt",
"off": [0]
},
{
"name": "skip",
"off": [0]
}
]
},
{
"name": "L (number of output octets)",
"type": "number",
"value": 16,
"min": 0
},
];
}
/**
* @param {ArrayBuffer} input
* @param {Object[]} args
* @returns {ArrayBuffer}
*/
run(input, args) {
const argSalt = Utils.convertToByteString(args[0].string || "", args[0].option),
info = Utils.convertToByteString(args[1].string || "", args[1].option),
hashFunc = args[2].toLowerCase(),
extractMode = args[3],
L = args[4],
IKM = Utils.arrayBufferToStr(input, false),
hasher = CryptoApi.getHasher(hashFunc),
HashLen = hasher.finalize().length;
if (L < 0) {
throw new OperationError("L must be non-negative");
}
if (L > 255 * HashLen) {
throw new OperationError("L too large (maximum length for " + args[2] + " is " + (255 * HashLen) + ")");
}
const hmacHash = function(key, data) {
hasher.reset();
const mac = CryptoApi.getHmac(key, hasher);
mac.update(data);
return mac.finalize();
};
const salt = extractMode === "with salt" ? argSalt : "\0".repeat(HashLen);
const PRK = extractMode === "skip" ? IKM : hmacHash(salt, IKM);
let T = "";
let result = "";
for (let i = 1; i <= 255 && result.length < L; i++) {
const TNext = hmacHash(PRK, T + info + String.fromCharCode(i));
result += TNext;
T = TNext;
}
return CryptoApi.encoder.toHex(result.substring(0, L));
}
}
export default DeriveHKDFKey;

View file

@ -65,7 +65,7 @@ class DetectFileType extends Operation {
Extension: ${type.extension} Extension: ${type.extension}
MIME type: ${type.mime}\n`; MIME type: ${type.mime}\n`;
if (type.description && type.description.length) { if (type?.description?.length) {
output += `Description: ${type.description}\n`; output += `Description: ${type.description}\n`;
} }

View file

@ -9,8 +9,7 @@ import OperationError from "../errors/OperationError.mjs";
import { isImage } from "../lib/FileType.mjs"; import { isImage } from "../lib/FileType.mjs";
import { toBase64 } from "../lib/Base64.mjs"; import { toBase64 } from "../lib/Base64.mjs";
import { isWorkerEnvironment } from "../Utils.mjs"; import { isWorkerEnvironment } from "../Utils.mjs";
import jimplib from "jimp/es/index.js"; import jimp from "jimp";
const jimp = jimplib.default ? jimplib.default : jimplib;
/** /**
* Image Dither operation * Image Dither operation

View file

@ -6,7 +6,7 @@
import Operation from "../Operation.mjs"; import Operation from "../Operation.mjs";
import cptable from "codepage"; import cptable from "codepage";
import {IO_FORMAT} from "../lib/ChrEnc.mjs"; import {CHR_ENC_CODE_PAGES} from "../lib/ChrEnc.mjs";
/** /**
* Encode text operation * Encode text operation
@ -26,7 +26,7 @@ class EncodeText extends Operation {
"<br><br>", "<br><br>",
"Supported charsets are:", "Supported charsets are:",
"<ul>", "<ul>",
Object.keys(IO_FORMAT).map(e => `<li>${e}</li>`).join("\n"), Object.keys(CHR_ENC_CODE_PAGES).map(e => `<li>${e}</li>`).join("\n"),
"</ul>", "</ul>",
].join("\n"); ].join("\n");
this.infoURL = "https://wikipedia.org/wiki/Character_encoding"; this.infoURL = "https://wikipedia.org/wiki/Character_encoding";
@ -36,7 +36,7 @@ class EncodeText extends Operation {
{ {
"name": "Encoding", "name": "Encoding",
"type": "option", "type": "option",
"value": Object.keys(IO_FORMAT) "value": Object.keys(CHR_ENC_CODE_PAGES)
} }
]; ];
} }
@ -47,7 +47,7 @@ class EncodeText extends Operation {
* @returns {ArrayBuffer} * @returns {ArrayBuffer}
*/ */
run(input, args) { run(input, args) {
const format = IO_FORMAT[args[0]]; const format = CHR_ENC_CODE_PAGES[args[0]];
const encoded = cptable.utils.encode(format, input); const encoded = cptable.utils.encode(format, input);
return new Uint8Array(encoded).buffer; return new Uint8Array(encoded).buffer;
} }

View file

@ -358,7 +358,7 @@ class Entropy extends Operation {
<br><script> <br><script>
var canvas = document.getElementById("chart-area"), var canvas = document.getElementById("chart-area"),
parentRect = canvas.parentNode.getBoundingClientRect(), parentRect = canvas.closest(".cm-scroller").getBoundingClientRect(),
entropy = ${entropy}, entropy = ${entropy},
height = parentRect.height * 0.25; height = parentRect.height * 0.25;

View file

@ -9,8 +9,7 @@ import OperationError from "../errors/OperationError.mjs";
import Utils from "../Utils.mjs"; import Utils from "../Utils.mjs";
import { fromBinary } from "../lib/Binary.mjs"; import { fromBinary } from "../lib/Binary.mjs";
import { isImage } from "../lib/FileType.mjs"; import { isImage } from "../lib/FileType.mjs";
import jimplib from "jimp/es/index.js"; import jimp from "jimp";
const jimp = jimplib.default ? jimplib.default : jimplib;
/** /**
* Extract LSB operation * Extract LSB operation

View file

@ -7,8 +7,7 @@
import Operation from "../Operation.mjs"; import Operation from "../Operation.mjs";
import OperationError from "../errors/OperationError.mjs"; import OperationError from "../errors/OperationError.mjs";
import { isImage } from "../lib/FileType.mjs"; import { isImage } from "../lib/FileType.mjs";
import jimplib from "jimp/es/index.js"; import jimp from "jimp";
const jimp = jimplib.default ? jimplib.default : jimplib;
import {RGBA_DELIM_OPTIONS} from "../lib/Delim.mjs"; import {RGBA_DELIM_OPTIONS} from "../lib/Delim.mjs";

View file

@ -9,8 +9,7 @@ import OperationError from "../errors/OperationError.mjs";
import { isImage } from "../lib/FileType.mjs"; import { isImage } from "../lib/FileType.mjs";
import { toBase64 } from "../lib/Base64.mjs"; import { toBase64 } from "../lib/Base64.mjs";
import { isWorkerEnvironment } from "../Utils.mjs"; import { isWorkerEnvironment } from "../Utils.mjs";
import jimplib from "jimp/es/index.js"; import jimp from "jimp";
const jimp = jimplib.default ? jimplib.default : jimplib;
/** /**
* Flip Image operation * Flip Image operation

View file

@ -91,7 +91,7 @@ Number of bytes not represented: ${256 - freq.bytesRepresented}
<script> <script>
var canvas = document.getElementById("chart-area"), var canvas = document.getElementById("chart-area"),
parentRect = canvas.parentNode.getBoundingClientRect(), parentRect = canvas.closest(".cm-scroller").getBoundingClientRect(),
scores = ${JSON.stringify(freq.percentages)}; scores = ${JSON.stringify(freq.percentages)};
canvas.width = parentRect.width * 0.95; canvas.width = parentRect.width * 0.95;

View file

@ -84,7 +84,7 @@ class FromBCD extends Operation {
break; break;
case "Raw": case "Raw":
default: default:
byteArray = Utils.strToByteArray(input); byteArray = new Uint8Array(Utils.strToArrayBuffer(input));
byteArray.forEach(b => { byteArray.forEach(b => {
nibbles.push(b >>> 4); nibbles.push(b >>> 4);
nibbles.push(b & 15); nibbles.push(b & 15);

View file

@ -26,7 +26,7 @@ class FromCharcode extends Operation {
this.description = "Converts unicode character codes back into text.<br><br>e.g. <code>0393 03b5 03b9 03ac 20 03c3 03bf 03c5</code> becomes <code>Γειά σου</code>"; this.description = "Converts unicode character codes back into text.<br><br>e.g. <code>0393 03b5 03b9 03ac 20 03c3 03bf 03c5</code> becomes <code>Γειά σου</code>";
this.infoURL = "https://wikipedia.org/wiki/Plane_(Unicode)"; this.infoURL = "https://wikipedia.org/wiki/Plane_(Unicode)";
this.inputType = "string"; this.inputType = "string";
this.outputType = "byteArray"; this.outputType = "ArrayBuffer";
this.args = [ this.args = [
{ {
"name": "Delimiter", "name": "Delimiter",
@ -44,7 +44,7 @@ class FromCharcode extends Operation {
/** /**
* @param {string} input * @param {string} input
* @param {Object[]} args * @param {Object[]} args
* @returns {byteArray} * @returns {ArrayBuffer}
* *
* @throws {OperationError} if base out of range * @throws {OperationError} if base out of range
*/ */
@ -59,7 +59,7 @@ class FromCharcode extends Operation {
} }
if (input.length === 0) { if (input.length === 0) {
return []; return new ArrayBuffer;
} }
if (base !== 16 && isWorkerEnvironment()) self.setOption("attemptHighlight", false); if (base !== 16 && isWorkerEnvironment()) self.setOption("attemptHighlight", false);
@ -77,7 +77,7 @@ class FromCharcode extends Operation {
for (i = 0; i < bites.length; i++) { for (i = 0; i < bites.length; i++) {
latin1 += Utils.chr(parseInt(bites[i], base)); latin1 += Utils.chr(parseInt(bites[i], base));
} }
return Utils.strToByteArray(latin1); return Utils.strToArrayBuffer(latin1);
} }
} }

View file

@ -10,8 +10,7 @@ import Utils from "../Utils.mjs";
import {isImage} from "../lib/FileType.mjs"; import {isImage} from "../lib/FileType.mjs";
import {toBase64} from "../lib/Base64.mjs"; import {toBase64} from "../lib/Base64.mjs";
import {isWorkerEnvironment} from "../Utils.mjs"; import {isWorkerEnvironment} from "../Utils.mjs";
import jimplib from "jimp/es/index.js"; import jimp from "jimp";
const jimp = jimplib.default ? jimplib.default : jimplib;
/** /**
* Generate Image operation * Generate Image operation

View file

@ -68,8 +68,8 @@ class HammingDistance extends Operation {
samples[0] = fromHex(samples[0]); samples[0] = fromHex(samples[0]);
samples[1] = fromHex(samples[1]); samples[1] = fromHex(samples[1]);
} else { } else {
samples[0] = Utils.strToByteArray(samples[0]); samples[0] = new Uint8Array(Utils.strToArrayBuffer(samples[0]));
samples[1] = Utils.strToByteArray(samples[1]); samples[1] = new Uint8Array(Utils.strToArrayBuffer(samples[1]));
} }
let dist = 0; let dist = 0;

View file

@ -9,8 +9,7 @@ import OperationError from "../errors/OperationError.mjs";
import { isImage } from "../lib/FileType.mjs"; import { isImage } from "../lib/FileType.mjs";
import { toBase64 } from "../lib/Base64.mjs"; import { toBase64 } from "../lib/Base64.mjs";
import { isWorkerEnvironment } from "../Utils.mjs"; import { isWorkerEnvironment } from "../Utils.mjs";
import jimplib from "jimp/es/index.js"; import jimp from "jimp";
const jimp = jimplib.default ? jimplib.default : jimplib;
/** /**
* Image Brightness / Contrast operation * Image Brightness / Contrast operation

View file

@ -9,8 +9,7 @@ import OperationError from "../errors/OperationError.mjs";
import { isImage } from "../lib/FileType.mjs"; import { isImage } from "../lib/FileType.mjs";
import { toBase64 } from "../lib/Base64.mjs"; import { toBase64 } from "../lib/Base64.mjs";
import { isWorkerEnvironment } from "../Utils.mjs"; import { isWorkerEnvironment } from "../Utils.mjs";
import jimplib from "jimp/es/index.js"; import jimp from "jimp";
const jimp = jimplib.default ? jimplib.default : jimplib;
/** /**
* Image Filter operation * Image Filter operation

View file

@ -9,8 +9,7 @@ import OperationError from "../errors/OperationError.mjs";
import { isImage } from "../lib/FileType.mjs"; import { isImage } from "../lib/FileType.mjs";
import { toBase64 } from "../lib/Base64.mjs"; import { toBase64 } from "../lib/Base64.mjs";
import { isWorkerEnvironment } from "../Utils.mjs"; import { isWorkerEnvironment } from "../Utils.mjs";
import jimplib from "jimp/es/index.js"; import jimp from "jimp";
const jimp = jimplib.default ? jimplib.default : jimplib;
/** /**
* Image Hue/Saturation/Lightness operation * Image Hue/Saturation/Lightness operation

View file

@ -9,8 +9,7 @@ import OperationError from "../errors/OperationError.mjs";
import { isImage } from "../lib/FileType.mjs"; import { isImage } from "../lib/FileType.mjs";
import { toBase64 } from "../lib/Base64.mjs"; import { toBase64 } from "../lib/Base64.mjs";
import { isWorkerEnvironment } from "../Utils.mjs"; import { isWorkerEnvironment } from "../Utils.mjs";
import jimplib from "jimp/es/index.js"; import jimp from "jimp";
const jimp = jimplib.default ? jimplib.default : jimplib;
/** /**
* Image Opacity operation * Image Opacity operation

View file

@ -78,7 +78,7 @@ The graph shows the IC of the input data. A low IC generally means that the text
<script type='application/javascript'> <script type='application/javascript'>
var canvas = document.getElementById("chart-area"), var canvas = document.getElementById("chart-area"),
parentRect = canvas.parentNode.getBoundingClientRect(), parentRect = canvas.closest(".cm-scroller").getBoundingClientRect(),
ic = ${ic}; ic = ${ic};
canvas.width = parentRect.width * 0.95; canvas.width = parentRect.width * 0.95;

View file

@ -9,8 +9,7 @@ import OperationError from "../errors/OperationError.mjs";
import { isImage } from "../lib/FileType.mjs"; import { isImage } from "../lib/FileType.mjs";
import { toBase64 } from "../lib/Base64.mjs"; import { toBase64 } from "../lib/Base64.mjs";
import { isWorkerEnvironment } from "../Utils.mjs"; import { isWorkerEnvironment } from "../Utils.mjs";
import jimplib from "jimp/es/index.js"; import jimp from "jimp";
const jimp = jimplib.default ? jimplib.default : jimplib;
/** /**
* Invert Image operation * Invert Image operation

View file

@ -0,0 +1,98 @@
/**
* @author mikecat
* @copyright Crown Copyright 2023
* @license Apache-2.0
*/
import Operation from "../Operation.mjs";
import OperationError from "../errors/OperationError.mjs";
/**
* Levenshtein Distance operation
*/
class LevenshteinDistance extends Operation {
/**
* LevenshteinDistance constructor
*/
constructor() {
super();
this.name = "Levenshtein Distance";
this.module = "Default";
this.description = "Levenshtein Distance (also known as Edit Distance) is a string metric to measure a difference between two strings that counts operations (insertions, deletions, and substitutions) on single character that are required to change one string to another.";
this.infoURL = "https://wikipedia.org/wiki/Levenshtein_distance";
this.inputType = "string";
this.outputType = "number";
this.args = [
{
name: "Sample delimiter",
type: "binaryString",
value: "\\n"
},
{
name: "Insertion cost",
type: "number",
value: 1
},
{
name: "Deletion cost",
type: "number",
value: 1
},
{
name: "Substitution cost",
type: "number",
value: 1
},
];
}
/**
* @param {string} input
* @param {Object[]} args
* @returns {number}
*/
run(input, args) {
const [delim, insCost, delCost, subCost] = args;
const samples = input.split(delim);
if (samples.length !== 2) {
throw new OperationError("Incorrect number of samples. Check your input and/or delimiter.");
}
if (insCost < 0 || delCost < 0 || subCost < 0) {
throw new OperationError("Negative costs are not allowed.");
}
const src = samples[0], dest = samples[1];
let currentCost = new Array(src.length + 1);
let nextCost = new Array(src.length + 1);
for (let i = 0; i < currentCost.length; i++) {
currentCost[i] = delCost * i;
}
for (let i = 0; i < dest.length; i++) {
const destc = dest.charAt(i);
nextCost[0] = currentCost[0] + insCost;
for (let j = 0; j < src.length; j++) {
let candidate;
// insertion
let optCost = currentCost[j + 1] + insCost;
// deletion
candidate = nextCost[j] + delCost;
if (candidate < optCost) optCost = candidate;
// substitution or matched character
candidate = currentCost[j];
if (src.charAt(j) !== destc) candidate += subCost;
if (candidate < optCost) optCost = candidate;
// store calculated cost
nextCost[j + 1] = optCost;
}
const tempCost = nextCost;
nextCost = currentCost;
currentCost = tempCost;
}
return currentCost[currentCost.length - 1];
}
}
export default LevenshteinDistance;

View file

@ -149,7 +149,7 @@ class Magic extends Operation {
output += `<tr> output += `<tr>
<td><a href="#${recipeURL}">${Utils.generatePrettyRecipe(option.recipe, true)}</a></td> <td><a href="#${recipeURL}">${Utils.generatePrettyRecipe(option.recipe, true)}</a></td>
<td>${Utils.escapeHtml(Utils.printable(Utils.truncate(option.data, 99)))}</td> <td>${Utils.escapeHtml(Utils.escapeWhitespace(Utils.truncate(option.data, 99)))}</td>
<td>${language}${fileType}${matchingOps}${useful}${validUTF8}${entropy}</td> <td>${language}${fileType}${matchingOps}${useful}${validUTF8}${entropy}</td>
</tr>`; </tr>`;
}); });

View file

@ -5,8 +5,6 @@
*/ */
import Operation from "../Operation.mjs"; import Operation from "../Operation.mjs";
import cptable from "codepage";
import {runHash} from "../lib/Hash.mjs"; import {runHash} from "../lib/Hash.mjs";
/** /**
@ -35,10 +33,14 @@ class NTHash extends Operation {
* @returns {string} * @returns {string}
*/ */
run(input, args) { run(input, args) {
const format = 1200; // UTF-16LE // Convert to UTF-16LE
const encoded = cptable.utils.encode(format, input); const buf = new ArrayBuffer(input.length * 2);
const hashed = runHash("md4", encoded); const bufView = new Uint16Array(buf);
for (let i = 0; i < input.length; i++) {
bufView[i] = input.charCodeAt(i);
}
const hashed = runHash("md4", buf);
return hashed.toUpperCase(); return hashed.toUpperCase();
} }
} }

View file

@ -8,8 +8,7 @@ import Operation from "../Operation.mjs";
import OperationError from "../errors/OperationError.mjs"; import OperationError from "../errors/OperationError.mjs";
import { isImage } from "../lib/FileType.mjs"; import { isImage } from "../lib/FileType.mjs";
import { toBase64 } from "../lib/Base64.mjs"; import { toBase64 } from "../lib/Base64.mjs";
import jimplib from "jimp/es/index.js"; import jimp from "jimp";
const jimp = jimplib.default ? jimplib.default : jimplib;
/** /**
* Normalise Image operation * Normalise Image operation

View file

@ -48,7 +48,7 @@ class PlistViewer extends Operation {
.replace(/<true\/>/g, m => "true") .replace(/<true\/>/g, m => "true")
.replace(/<\/plist>/g, "/plist") .replace(/<\/plist>/g, "/plist")
.replace(/<date>.+<\/date>/g, m => `${m.slice(6, m.indexOf(/<\/integer>/g)-6)}`) .replace(/<date>.+<\/date>/g, m => `${m.slice(6, m.indexOf(/<\/integer>/g)-6)}`)
.replace(/<data>(\s|.)+?<\/data>/g, m => `${m.slice(6, m.indexOf(/<\/data>/g)-6)}`) .replace(/<data>[\s\S]+?<\/data>/g, m => `${m.slice(6, m.indexOf(/<\/data>/g)-6)}`)
.replace(/[ \t\r\f\v]/g, ""); .replace(/[ \t\r\f\v]/g, "");
/** /**

View file

@ -112,8 +112,8 @@ CMYK: ${cmyk}
useAlpha: true useAlpha: true
}).on('colorpickerChange', function(e) { }).on('colorpickerChange', function(e) {
var color = e.color.string('rgba'); var color = e.color.string('rgba');
document.getElementById('input-text').value = color; window.app.manager.input.setInput(color);
window.app.manager.input.debounceInputChange(new Event("keyup")); window.app.manager.input.inputChange(new Event("keyup"));
}); });
</script>`; </script>`;
} }

View file

@ -49,7 +49,7 @@ class ParseIPv4Header extends Operation {
if (format === "Hex") { if (format === "Hex") {
input = fromHex(input); input = fromHex(input);
} else if (format === "Raw") { } else if (format === "Raw") {
input = Utils.strToByteArray(input); input = new Uint8Array(Utils.strToArrayBuffer(input));
} else { } else {
throw new OperationError("Unrecognised input format."); throw new OperationError("Unrecognised input format.");
} }

View file

@ -71,7 +71,7 @@ class ParseX509Certificate extends Operation {
cert.readCertHex(toHex(fromBase64(input, null, "byteArray"), "")); cert.readCertHex(toHex(fromBase64(input, null, "byteArray"), ""));
break; break;
case "Raw": case "Raw":
cert.readCertHex(toHex(Utils.strToByteArray(input), "")); cert.readCertHex(toHex(Utils.strToArrayBuffer(input), ""));
break; break;
default: default:
undefinedInputFormat = true; undefinedInputFormat = true;

View file

@ -77,7 +77,7 @@ class PlayMedia extends Operation {
* Displays an audio or video element that may be able to play the media * Displays an audio or video element that may be able to play the media
* file. * file.
* *
* @param data {byteArray} Data containing an audio or video file. * @param {byteArray} data Data containing an audio or video file.
* @returns {string} Markup to display a media player. * @returns {string} Markup to display a media player.
*/ */
async present(data) { async present(data) {

View file

@ -86,12 +86,12 @@ class ROT13BruteForce extends Operation {
} }
const rotatedString = Utils.byteArrayToUtf8(rotated); const rotatedString = Utils.byteArrayToUtf8(rotated);
if (rotatedString.toLowerCase().indexOf(cribLower) >= 0) { if (rotatedString.toLowerCase().indexOf(cribLower) >= 0) {
const rotatedStringPrintable = Utils.printable(rotatedString, false); const rotatedStringEscaped = Utils.escapeWhitespace(rotatedString);
if (printAmount) { if (printAmount) {
const amountStr = "Amount = " + (" " + amount).slice(-2) + ": "; const amountStr = "Amount = " + (" " + amount).slice(-2) + ": ";
result.push(amountStr + rotatedStringPrintable); result.push(amountStr + rotatedStringEscaped);
} else { } else {
result.push(rotatedStringPrintable); result.push(rotatedStringEscaped);
} }
} }
} }

View file

@ -66,12 +66,12 @@ class ROT47BruteForce extends Operation {
} }
const rotatedString = Utils.byteArrayToUtf8(rotated); const rotatedString = Utils.byteArrayToUtf8(rotated);
if (rotatedString.toLowerCase().indexOf(cribLower) >= 0) { if (rotatedString.toLowerCase().indexOf(cribLower) >= 0) {
const rotatedStringPrintable = Utils.printable(rotatedString, false); const rotatedStringEscaped = Utils.escapeWhitespace(rotatedString);
if (printAmount) { if (printAmount) {
const amountStr = "Amount = " + (" " + amount).slice(-2) + ": "; const amountStr = "Amount = " + (" " + amount).slice(-2) + ": ";
result.push(amountStr + rotatedStringPrintable); result.push(amountStr + rotatedStringEscaped);
} else { } else {
result.push(rotatedStringPrintable); result.push(rotatedStringEscaped);
} }
} }
} }

View file

@ -10,8 +10,7 @@ import Utils from "../Utils.mjs";
import { isImage } from "../lib/FileType.mjs"; import { isImage } from "../lib/FileType.mjs";
import { runHash } from "../lib/Hash.mjs"; import { runHash } from "../lib/Hash.mjs";
import { toBase64 } from "../lib/Base64.mjs"; import { toBase64 } from "../lib/Base64.mjs";
import jimplib from "jimp/es/index.js"; import jimp from "jimp";
const jimp = jimplib.default ? jimplib.default : jimplib;
/** /**
* Randomize Colour Palette operation * Randomize Colour Palette operation

View file

@ -9,8 +9,7 @@ import OperationError from "../errors/OperationError.mjs";
import { isImage } from "../lib/FileType.mjs"; import { isImage } from "../lib/FileType.mjs";
import { toBase64 } from "../lib/Base64.mjs"; import { toBase64 } from "../lib/Base64.mjs";
import { isWorkerEnvironment } from "../Utils.mjs"; import { isWorkerEnvironment } from "../Utils.mjs";
import jimplib from "jimp/es/index.js"; import jimp from "jimp";
const jimp = jimplib.default ? jimplib.default : jimplib;
/** /**
* Resize Image operation * Resize Image operation

View file

@ -9,8 +9,7 @@ import OperationError from "../errors/OperationError.mjs";
import { isImage } from "../lib/FileType.mjs"; import { isImage } from "../lib/FileType.mjs";
import { toBase64 } from "../lib/Base64.mjs"; import { toBase64 } from "../lib/Base64.mjs";
import { isWorkerEnvironment } from "../Utils.mjs"; import { isWorkerEnvironment } from "../Utils.mjs";
import jimplib from "jimp/es/index.js"; import jimp from "jimp";
const jimp = jimplib.default ? jimplib.default : jimplib;
/** /**
* Rotate Image operation * Rotate Image operation

View file

@ -60,7 +60,7 @@ class ScanForEmbeddedFiles extends Operation {
Extension: ${type.fileDetails.extension} Extension: ${type.fileDetails.extension}
MIME type: ${type.fileDetails.mime}\n`; MIME type: ${type.fileDetails.mime}\n`;
if (type.fileDetails.description && type.fileDetails.description.length) { if (type?.fileDetails?.description?.length) {
output += ` Description: ${type.fileDetails.description}\n`; output += ` Description: ${type.fileDetails.description}\n`;
} }
}); });

View file

@ -10,8 +10,7 @@ import { isImage } from "../lib/FileType.mjs";
import { toBase64 } from "../lib/Base64.mjs"; import { toBase64 } from "../lib/Base64.mjs";
import { gaussianBlur } from "../lib/ImageManipulation.mjs"; import { gaussianBlur } from "../lib/ImageManipulation.mjs";
import { isWorkerEnvironment } from "../Utils.mjs"; import { isWorkerEnvironment } from "../Utils.mjs";
import jimplib from "jimp/es/index.js"; import jimp from "jimp";
const jimp = jimplib.default ? jimplib.default : jimplib;
/** /**
* Sharpen Image operation * Sharpen Image operation

View file

@ -90,7 +90,14 @@ class ShowOnMap extends Operation {
leafletUrl = "https://unpkg.com/leaflet@1.5.0/dist/leaflet.js", leafletUrl = "https://unpkg.com/leaflet@1.5.0/dist/leaflet.js",
leafletCssUrl = "https://unpkg.com/leaflet@1.5.0/dist/leaflet.css"; leafletCssUrl = "https://unpkg.com/leaflet@1.5.0/dist/leaflet.css";
return `<link rel="stylesheet" href="${leafletCssUrl}" crossorigin=""/> return `<link rel="stylesheet" href="${leafletCssUrl}" crossorigin=""/>
<style>#output-html { white-space: normal; padding: 0; }</style> <style>
#output-text .cm-content,
#output-text .cm-line,
#output-html {
padding: 0;
white-space: normal;
}
</style>
<div id="presentedMap" style="width: 100%; height: 100%;"></div> <div id="presentedMap" style="width: 100%; height: 100%;"></div>
<script type="text/javascript"> <script type="text/javascript">
var mapscript = document.createElement('script'); var mapscript = document.createElement('script');

View file

@ -8,8 +8,7 @@ import Operation from "../Operation.mjs";
import OperationError from "../errors/OperationError.mjs"; import OperationError from "../errors/OperationError.mjs";
import Utils from "../Utils.mjs"; import Utils from "../Utils.mjs";
import {isImage} from "../lib/FileType.mjs"; import {isImage} from "../lib/FileType.mjs";
import jimplib from "jimp/es/index.js"; import jimp from "jimp";
const jimp = jimplib.default ? jimplib.default : jimplib;
/** /**
* Split Colour Channels operation * Split Colour Channels operation

View file

@ -0,0 +1,76 @@
/**
* @author mikecat
* @copyright Crown Copyright 2023
* @license Apache-2.0
*/
import Operation from "../Operation.mjs";
/**
* Swap case operation
*/
class SwapCase extends Operation {
/**
* SwapCase constructor
*/
constructor() {
super();
this.name = "Swap case";
this.module = "Default";
this.description = "Converts uppercase letters to lowercase ones, and lowercase ones to uppercase ones.";
this.infoURL = "";
this.inputType = "string";
this.outputType = "string";
this.args = [];
}
/**
* @param {string} input
* @param {Object[]} args
* @returns {string}
*/
run(input, args) {
let result = "";
for (let i = 0; i < input.length; i++) {
const c = input.charAt(i);
const upper = c.toUpperCase();
if (c === upper) {
result += c.toLowerCase();
} else {
result += upper;
}
}
return result;
}
/**
* Highlight Swap case
*
* @param {Object[]} pos
* @param {number} pos[].start
* @param {number} pos[].end
* @param {Object[]} args
* @returns {Object[]} pos
*/
highlight(pos, args) {
return pos;
}
/**
* Highlight Swap case in reverse
*
* @param {Object[]} pos
* @param {number} pos[].start
* @param {number} pos[].end
* @param {Object[]} args
* @returns {Object[]} pos
*/
highlightReverse(pos, args) {
return pos;
}
}
export default SwapCase;

View file

@ -8,7 +8,7 @@
import Operation from "../Operation.mjs"; import Operation from "../Operation.mjs";
import Utils from "../Utils.mjs"; import Utils from "../Utils.mjs";
import cptable from "codepage"; import cptable from "codepage";
import {IO_FORMAT} from "../lib/ChrEnc.mjs"; import {CHR_ENC_CODE_PAGES} from "../lib/ChrEnc.mjs";
/** /**
* Text Encoding Brute Force operation * Text Encoding Brute Force operation
@ -28,7 +28,7 @@ class TextEncodingBruteForce extends Operation {
"<br><br>", "<br><br>",
"Supported charsets are:", "Supported charsets are:",
"<ul>", "<ul>",
Object.keys(IO_FORMAT).map(e => `<li>${e}</li>`).join("\n"), Object.keys(CHR_ENC_CODE_PAGES).map(e => `<li>${e}</li>`).join("\n"),
"</ul>" "</ul>"
].join("\n"); ].join("\n");
this.infoURL = "https://wikipedia.org/wiki/Character_encoding"; this.infoURL = "https://wikipedia.org/wiki/Character_encoding";
@ -51,15 +51,15 @@ class TextEncodingBruteForce extends Operation {
*/ */
run(input, args) { run(input, args) {
const output = {}, const output = {},
charsets = Object.keys(IO_FORMAT), charsets = Object.keys(CHR_ENC_CODE_PAGES),
mode = args[0]; mode = args[0];
charsets.forEach(charset => { charsets.forEach(charset => {
try { try {
if (mode === "Decode") { if (mode === "Decode") {
output[charset] = cptable.utils.decode(IO_FORMAT[charset], input); output[charset] = cptable.utils.decode(CHR_ENC_CODE_PAGES[charset], input);
} else { } else {
output[charset] = Utils.arrayBufferToStr(cptable.utils.encode(IO_FORMAT[charset], input)); output[charset] = Utils.arrayBufferToStr(cptable.utils.encode(CHR_ENC_CODE_PAGES[charset], input));
} }
} catch (err) { } catch (err) {
output[charset] = "Could not decode."; output[charset] = "Could not decode.";
@ -79,7 +79,7 @@ class TextEncodingBruteForce extends Operation {
let table = "<table class='table table-hover table-sm table-bordered table-nonfluid'><tr><th>Encoding</th><th>Value</th></tr>"; let table = "<table class='table table-hover table-sm table-bordered table-nonfluid'><tr><th>Encoding</th><th>Value</th></tr>";
for (const enc in encodings) { for (const enc in encodings) {
const value = Utils.escapeHtml(Utils.printable(encodings[enc], true)); const value = Utils.escapeHtml(Utils.escapeWhitespace(encodings[enc]));
table += `<tr><td>${enc}</td><td>${value}</td></tr>`; table += `<tr><td>${enc}</td><td>${value}</td></tr>`;
} }

View file

@ -76,7 +76,7 @@ class ToHex extends Operation {
} }
const lineSize = args[1], const lineSize = args[1],
len = (delim === "\r\n" ? 1 : delim.length) + commaLen; len = delim.length + commaLen;
const countLF = function(p) { const countLF = function(p) {
// Count the number of LFs from 0 upto p // Count the number of LFs from 0 upto p
@ -105,7 +105,7 @@ class ToHex extends Operation {
* @returns {Object[]} pos * @returns {Object[]} pos
*/ */
highlightReverse(pos, args) { highlightReverse(pos, args) {
let delim, commaLen; let delim, commaLen = 0;
if (args[0] === "0x with comma") { if (args[0] === "0x with comma") {
delim = "0x"; delim = "0x";
commaLen = 1; commaLen = 1;
@ -114,7 +114,7 @@ class ToHex extends Operation {
} }
const lineSize = args[1], const lineSize = args[1],
len = (delim === "\r\n" ? 1 : delim.length) + commaLen, len = delim.length + commaLen,
width = len + 2; width = len + 2;
const countLF = function(p) { const countLF = function(p) {

View file

@ -63,33 +63,32 @@ class ToHexdump extends Operation {
if (length < 1 || Math.round(length) !== length) if (length < 1 || Math.round(length) !== length)
throw new OperationError("Width must be a positive integer"); throw new OperationError("Width must be a positive integer");
let output = ""; const lines = [];
for (let i = 0; i < data.length; i += length) { for (let i = 0; i < data.length; i += length) {
const buff = data.slice(i, i+length);
let hexa = "";
for (let j = 0; j < buff.length; j++) {
hexa += Utils.hex(buff[j], padding) + " ";
}
let lineNo = Utils.hex(i, 8); let lineNo = Utils.hex(i, 8);
const buff = data.slice(i, i+length);
const hex = [];
buff.forEach(b => hex.push(Utils.hex(b, padding)));
let hexStr = hex.join(" ").padEnd(length*(padding+1), " ");
const ascii = Utils.printable(Utils.byteArrayToChars(buff), false, unixFormat);
const asciiStr = ascii.padEnd(buff.length, " ");
if (upperCase) { if (upperCase) {
hexa = hexa.toUpperCase(); hexStr = hexStr.toUpperCase();
lineNo = lineNo.toUpperCase(); lineNo = lineNo.toUpperCase();
} }
output += lineNo + " " + lines.push(`${lineNo} ${hexStr} |${asciiStr}|`);
hexa.padEnd(length*(padding+1), " ") +
" |" +
Utils.printable(Utils.byteArrayToChars(buff), false, unixFormat).padEnd(buff.length, " ") +
"|\n";
if (includeFinalLength && i+buff.length === data.length) { if (includeFinalLength && i+buff.length === data.length) {
output += Utils.hex(i+buff.length, 8) + "\n"; lines.push(Utils.hex(i+buff.length, 8));
} }
} }
return output.slice(0, -1); return lines.join("\n");
} }
/** /**

View file

@ -214,7 +214,7 @@ class ToTable extends Operation {
output += outputRow(row, longestCells); output += outputRow(row, longestCells);
let rowOutput = verticalBorder; let rowOutput = verticalBorder;
row.forEach(function(cell, index) { row.forEach(function(cell, index) {
rowOutput += " " + headerDivider + " " + verticalBorder; rowOutput += " " + headerDivider.repeat(longestCells[index]) + " " + verticalBorder;
}); });
output += rowOutput += "\n"; output += rowOutput += "\n";

View file

@ -5,6 +5,7 @@
*/ */
import Operation from "../Operation.mjs"; import Operation from "../Operation.mjs";
import Utils from "../Utils.mjs";
import moment from "moment-timezone"; import moment from "moment-timezone";
import {DATETIME_FORMATS, FORMAT_EXAMPLES} from "../lib/DateTime.mjs"; import {DATETIME_FORMATS, FORMAT_EXAMPLES} from "../lib/DateTime.mjs";
@ -24,7 +25,8 @@ class TranslateDateTimeFormat extends Operation {
this.description = "Parses a datetime string in one format and re-writes it in another.<br><br>Run with no input to see the relevant format string examples."; this.description = "Parses a datetime string in one format and re-writes it in another.<br><br>Run with no input to see the relevant format string examples.";
this.infoURL = "https://momentjs.com/docs/#/parsing/string-format/"; this.infoURL = "https://momentjs.com/docs/#/parsing/string-format/";
this.inputType = "string"; this.inputType = "string";
this.outputType = "html"; this.outputType = "string";
this.presentType = "html";
this.args = [ this.args = [
{ {
"name": "Built in formats", "name": "Built in formats",
@ -53,12 +55,14 @@ class TranslateDateTimeFormat extends Operation {
"value": ["UTC"].concat(moment.tz.names()) "value": ["UTC"].concat(moment.tz.names())
} }
]; ];
this.invalidFormatMessage = "Invalid format.";
} }
/** /**
* @param {string} input * @param {string} input
* @param {Object[]} args * @param {Object[]} args
* @returns {html} * @returns {string}
*/ */
run(input, args) { run(input, args) {
const [inputFormat, inputTimezone, outputFormat, outputTimezone] = args.slice(1); const [inputFormat, inputTimezone, outputFormat, outputTimezone] = args.slice(1);
@ -68,12 +72,22 @@ class TranslateDateTimeFormat extends Operation {
date = moment.tz(input, inputFormat, inputTimezone); date = moment.tz(input, inputFormat, inputTimezone);
if (!date || date.format() === "Invalid date") throw Error; if (!date || date.format() === "Invalid date") throw Error;
} catch (err) { } catch (err) {
return `Invalid format.\n\n${FORMAT_EXAMPLES}`; return this.invalidFormatMessage;
} }
return date.tz(outputTimezone).format(outputFormat); return date.tz(outputTimezone).format(outputFormat.replace(/[<>]/g, ""));
} }
/**
* @param {string} data
* @returns {html}
*/
present(data) {
if (data === this.invalidFormatMessage) {
return `${data}\n\n${FORMAT_EXAMPLES}`;
}
return Utils.escapeHtml(data);
}
} }
export default TranslateDateTimeFormat; export default TranslateDateTimeFormat;

View file

@ -9,8 +9,7 @@ import OperationError from "../errors/OperationError.mjs";
import Utils from "../Utils.mjs"; import Utils from "../Utils.mjs";
import { isImage } from "../lib/FileType.mjs"; import { isImage } from "../lib/FileType.mjs";
import { toBase64 } from "../lib/Base64.mjs"; import { toBase64 } from "../lib/Base64.mjs";
import jimplib from "jimp/es/index.js"; import jimp from "jimp";
const jimp = jimplib.default ? jimplib.default : jimplib;
/** /**
* View Bit Plane operation * View Bit Plane operation

View file

@ -126,11 +126,7 @@ class XORBruteForce extends Operation {
if (crib && resultUtf8.toLowerCase().indexOf(crib) < 0) continue; if (crib && resultUtf8.toLowerCase().indexOf(crib) < 0) continue;
if (printKey) record += "Key = " + Utils.hex(key, (2*keyLength)) + ": "; if (printKey) record += "Key = " + Utils.hex(key, (2*keyLength)) + ": ";
if (outputHex) { record += outputHex ? toHex(result) : Utils.escapeWhitespace(resultUtf8);
record += toHex(result);
} else {
record += Utils.printable(resultUtf8, false);
}
output.push(record); output.push(record);
} }

View file

@ -2,7 +2,7 @@
* GOST 28147-89/GOST R 34.12-2015/GOST R 32.13-2015 Encryption Algorithm * GOST 28147-89/GOST R 34.12-2015/GOST R 32.13-2015 Encryption Algorithm
* 1.76 * 1.76
* 2014-2016, Rudolf Nickolaev. All rights reserved. * 2014-2016, Rudolf Nickolaev. All rights reserved.
* *
* Exported for CyberChef by mshwed [m@ttshwed.com] * Exported for CyberChef by mshwed [m@ttshwed.com]
*/ */
@ -18,7 +18,7 @@
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
* *
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
@ -29,7 +29,7 @@
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
* *
*/ */
import GostRandom from './gostRandom.mjs'; import GostRandom from './gostRandom.mjs';
@ -37,10 +37,10 @@ import GostRandom from './gostRandom.mjs';
import crypto from 'crypto' import crypto from 'crypto'
/* /*
* Initial parameters and common algortithms of GOST 28147-89 * Initial parameters and common algortithms of GOST 28147-89
* *
* http://tools.ietf.org/html/rfc5830 * http://tools.ietf.org/html/rfc5830
* *
*/ // <editor-fold defaultstate="collapsed"> */ // <editor-fold defaultstate="collapsed">
var root = {}; var root = {};
@ -198,7 +198,7 @@ function randomSeed(e) {
function buffer(d) { function buffer(d) {
if (d instanceof CryptoOperationData) if (d instanceof CryptoOperationData)
return d; return d;
else if (d && d.buffer && d.buffer instanceof CryptoOperationData) else if (d && d?.buffer instanceof CryptoOperationData)
return d.byteOffset === 0 && d.byteLength === d.buffer.byteLength ? return d.byteOffset === 0 && d.byteLength === d.buffer.byteLength ?
d.buffer : new Uint8Array(new Uint8Array(d, d.byteOffset, d.byteLength)).buffer; d.buffer : new Uint8Array(new Uint8Array(d, d.byteOffset, d.byteLength)).buffer;
else else
@ -232,9 +232,9 @@ function swap32(b) {
// </editor-fold> // </editor-fold>
/* /*
* Initial parameters and common algortithms of GOST R 34.12-15 * Initial parameters and common algortithms of GOST R 34.12-15
* Algorithm "Kuznechik" 128bit * Algorithm "Kuznechik" 128bit
* *
*/ // <editor-fold defaultstate="collapsed"> */ // <editor-fold defaultstate="collapsed">
// Default initial vector // Default initial vector
@ -243,17 +243,17 @@ var defaultIV128 = new Uint8Array([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
// Mult table for R function // Mult table for R function
var multTable = (function () { var multTable = (function () {
// Multiply two numbers in the GF(2^8) finite field defined // Multiply two numbers in the GF(2^8) finite field defined
// by the polynomial x^8 + x^7 + x^6 + x + 1 = 0 */ // by the polynomial x^8 + x^7 + x^6 + x + 1 = 0 */
function gmul(a, b) { function gmul(a, b) {
var p = 0, counter, carry; var p = 0, counter, carry;
for (counter = 0; counter < 8; counter++) { for (counter = 0; counter < 8; counter++) {
if (b & 1) if (b & 1)
p ^= a; p ^= a;
carry = a & 0x80; // detect if x^8 term is about to be generated carry = a & 0x80; // detect if x^8 term is about to be generated
a = (a << 1) & 0xff; a = (a << 1) & 0xff;
if (carry) if (carry)
a ^= 0xc3; // replace x^8 with x^7 + x^6 + x + 1 a ^= 0xc3; // replace x^8 with x^7 + x^6 + x + 1
b >>= 1; b >>= 1;
} }
return p & 0xff; return p & 0xff;
@ -379,7 +379,7 @@ function funcC(number, d) {
/** /**
* Key schedule for GOST R 34.12-15 128bits * Key schedule for GOST R 34.12-15 128bits
* *
* @memberOf GostCipher * @memberOf GostCipher
* @private * @private
* @instance * @instance
@ -404,8 +404,8 @@ function keySchedule128(k) // <editor-fold defaultstate="collapsed">
} // </editor-fold> } // </editor-fold>
/** /**
* GOST R 34.12-15 128 bits encrypt/decrypt process * GOST R 34.12-15 128 bits encrypt/decrypt process
* *
* @memberOf GostCipher * @memberOf GostCipher
* @private * @private
* @instance * @instance
@ -434,14 +434,14 @@ function process128(k, d, ofs, e) // <editor-fold defaultstate="collapsed">
/** /**
* One GOST encryption round * One GOST encryption round
* *
* @memberOf GostCipher * @memberOf GostCipher
* @private * @private
* @instance * @instance
* @method round * @method round
* @param {Int8Array} S sBox * @param {Int8Array} S sBox
* @param {Int32Array} m 2x32 bits cipher block * @param {Int32Array} m 2x32 bits cipher block
* @param {Int32Array} k 32 bits key[i] * @param {Int32Array} k 32 bits key[i]
*/ */
function round(S, m, k) // <editor-fold defaultstate="collapsed"> function round(S, m, k) // <editor-fold defaultstate="collapsed">
{ {
@ -465,13 +465,13 @@ function round(S, m, k) // <editor-fold defaultstate="collapsed">
/** /**
* Process encrypt/decrypt block with key K using GOST 28147-89 * Process encrypt/decrypt block with key K using GOST 28147-89
* *
* @memberOf GostCipher * @memberOf GostCipher
* @private * @private
* @instance * @instance
* @method process * @method process
* @param k {Int32Array} 8x32 bits key * @param k {Int32Array} 8x32 bits key
* @param d {Int32Array} 8x8 bits cipher block * @param d {Int32Array} 8x8 bits cipher block
* @param ofs {number} offset * @param ofs {number} offset
*/ */
function process89(k, d, ofs) // <editor-fold defaultstate="collapsed"> function process89(k, d, ofs) // <editor-fold defaultstate="collapsed">
@ -490,13 +490,13 @@ function process89(k, d, ofs) // <editor-fold defaultstate="collapsed">
/** /**
* Process encrypt/decrypt block with key K using GOST R 34.12-15 64bit block * Process encrypt/decrypt block with key K using GOST R 34.12-15 64bit block
* *
* @memberOf GostCipher * @memberOf GostCipher
* @private * @private
* @instance * @instance
* @method process * @method process
* @param k {Int32Array} 8x32 bits key * @param k {Int32Array} 8x32 bits key
* @param d {Int32Array} 8x8 bits cipher block * @param d {Int32Array} 8x8 bits cipher block
* @param ofs {number} offset * @param ofs {number} offset
*/ */
function process15(k, d, ofs) // <editor-fold defaultstate="collapsed"> function process15(k, d, ofs) // <editor-fold defaultstate="collapsed">
@ -517,7 +517,7 @@ function process15(k, d, ofs) // <editor-fold defaultstate="collapsed">
/** /**
* Key keySchedule algorithm for GOST 28147-89 64bit cipher * Key keySchedule algorithm for GOST 28147-89 64bit cipher
* *
* @memberOf GostCipher * @memberOf GostCipher
* @private * @private
* @instance * @instance
@ -556,7 +556,7 @@ function keySchedule89(k, e) // <editor-fold defaultstate="collapsed">
/** /**
* Key keySchedule algorithm for GOST R 34.12-15 64bit cipher * Key keySchedule algorithm for GOST R 34.12-15 64bit cipher
* *
* @memberOf GostCipher * @memberOf GostCipher
* @private * @private
* @instance * @instance
@ -595,9 +595,9 @@ function keySchedule15(k, e) // <editor-fold defaultstate="collapsed">
/** /**
* Key schedule for RC2 * Key schedule for RC2
* *
* https://tools.ietf.org/html/rfc2268 * https://tools.ietf.org/html/rfc2268
* *
* @memberOf GostCipher * @memberOf GostCipher
* @private * @private
* @instance * @instance
@ -649,10 +649,10 @@ var keyScheduleRC2 = (function () // <editor-fold defaultstate="collapsed">
)(); )();
/** /**
* RC2 encrypt/decrypt process * RC2 encrypt/decrypt process
* *
* https://tools.ietf.org/html/rfc2268 * https://tools.ietf.org/html/rfc2268
* *
* @memberOf GostCipher * @memberOf GostCipher
* @private * @private
* @instance * @instance
@ -734,13 +734,13 @@ var processRC2 = (function () // <editor-fold defaultstate="collapsed">
/** /**
* Algorithm name GOST 28147-ECB<br><br> * Algorithm name GOST 28147-ECB<br><br>
* *
* encryptECB (K, D) is D, encrypted with key k using GOST 28147/GOST R 34.13 in * encryptECB (K, D) is D, encrypted with key k using GOST 28147/GOST R 34.13 in
* "prostaya zamena" (Electronic Codebook, ECB) mode. * "prostaya zamena" (Electronic Codebook, ECB) mode.
* @memberOf GostCipher * @memberOf GostCipher
* @method encrypt * @method encrypt
* @instance * @instance
* @param k {CryptoOperationData} 8x32 bit key * @param k {CryptoOperationData} 8x32 bit key
* @param d {CryptoOperationData} 8 bits message * @param d {CryptoOperationData} 8 bits message
* @return {CryptoOperationData} result * @return {CryptoOperationData} result
*/ */
@ -759,14 +759,14 @@ function encryptECB(k, d) // <editor-fold defaultstate="collapsed">
/** /**
* Algorithm name GOST 28147-ECB<br><br> * Algorithm name GOST 28147-ECB<br><br>
* *
* decryptECB (K, D) is D, decrypted with key K using GOST 28147/GOST R 34.13 in * decryptECB (K, D) is D, decrypted with key K using GOST 28147/GOST R 34.13 in
* "prostaya zamena" (Electronic Codebook, ECB) mode. * "prostaya zamena" (Electronic Codebook, ECB) mode.
* *
* @memberOf GostCipher * @memberOf GostCipher
* @method decrypt * @method decrypt
* @instance * @instance
* @param k {CryptoOperationData} 8x32 bits key * @param k {CryptoOperationData} 8x32 bits key
* @param d {CryptoOperationData} 8 bits message * @param d {CryptoOperationData} 8 bits message
* @return {CryptoOperationData} result * @return {CryptoOperationData} result
*/ */
@ -785,16 +785,16 @@ function decryptECB(k, d) // <editor-fold defaultstate="collapsed">
/** /**
* Algorithm name GOST 28147-CFB<br><br> * Algorithm name GOST 28147-CFB<br><br>
* *
* encryptCFB (IV, K, D) is D, encrypted with key K using GOST 28147/GOST R 34.13 * encryptCFB (IV, K, D) is D, encrypted with key K using GOST 28147/GOST R 34.13
* in "gammirovanie s obratnoj svyaziyu" (Cipher Feedback, CFB) mode, and IV is * in "gammirovanie s obratnoj svyaziyu" (Cipher Feedback, CFB) mode, and IV is
* used as the initialization vector. * used as the initialization vector.
* *
* @memberOf GostCipher * @memberOf GostCipher
* @method encrypt * @method encrypt
* @instance * @instance
* @param {CryptoOperationData} k 8x32 bits key * @param {CryptoOperationData} k 8x32 bits key
* @param {CryptoOperationData} d 8 bits array with data * @param {CryptoOperationData} d 8 bits array with data
* @param {CryptoOperationData} iv initial vector * @param {CryptoOperationData} iv initial vector
* @return {CryptoOperationData} result * @return {CryptoOperationData} result
*/ */
@ -838,16 +838,16 @@ function encryptCFB(k, d, iv) // <editor-fold defaultstate="collapsed">
/** /**
* Algorithm name GOST 28147-CFB<br><br> * Algorithm name GOST 28147-CFB<br><br>
* *
* decryptCFB (IV, K, D) is D, decrypted with key K using GOST 28147/GOST R 34.13 * decryptCFB (IV, K, D) is D, decrypted with key K using GOST 28147/GOST R 34.13
* in "gammirovanie s obratnoj svyaziyu po shifrotekstu" (Cipher Feedback, CFB) mode, and IV is * in "gammirovanie s obratnoj svyaziyu po shifrotekstu" (Cipher Feedback, CFB) mode, and IV is
* used as the initialization vector. * used as the initialization vector.
* *
* @memberOf GostCipher * @memberOf GostCipher
* @method decrypt * @method decrypt
* @instance * @instance
* @param {CryptoOperationData} k 8x32 bits key * @param {CryptoOperationData} k 8x32 bits key
* @param {CryptoOperationData} d 8 bits array with data * @param {CryptoOperationData} d 8 bits array with data
* @param {CryptoOperationData} iv initial vector * @param {CryptoOperationData} iv initial vector
* @return {CryptoOperationData} result * @return {CryptoOperationData} result
*/ */
@ -893,31 +893,31 @@ function decryptCFB(k, d, iv) // <editor-fold defaultstate="collapsed">
/** /**
* Algorithm name GOST 28147-OFB<br><br> * Algorithm name GOST 28147-OFB<br><br>
* *
* encryptOFB/decryptOFB (IV, K, D) is D, encrypted with key K using GOST 28147/GOST R 34.13 * encryptOFB/decryptOFB (IV, K, D) is D, encrypted with key K using GOST 28147/GOST R 34.13
* in "gammirovanie s obratnoj svyaziyu po vyhodu" (Output Feedback, OFB) mode, and IV is * in "gammirovanie s obratnoj svyaziyu po vyhodu" (Output Feedback, OFB) mode, and IV is
* used as the initialization vector. * used as the initialization vector.
* *
* @memberOf GostCipher * @memberOf GostCipher
* @method encrypt * @method encrypt
* @instance * @instance
* @param {CryptoOperationData} k 8x32 bits key * @param {CryptoOperationData} k 8x32 bits key
* @param {CryptoOperationData} d 8 bits array with data * @param {CryptoOperationData} d 8 bits array with data
* @param {CryptoOperationData} iv 8x8 optional bits initial vector * @param {CryptoOperationData} iv 8x8 optional bits initial vector
* @return {CryptoOperationData} result * @return {CryptoOperationData} result
*/ */
/** /**
* Algorithm name GOST 28147-OFB<br><br> * Algorithm name GOST 28147-OFB<br><br>
* *
* encryptOFB/decryptOFB (IV, K, D) is D, encrypted with key K using GOST 28147/GOST R 34.13 * encryptOFB/decryptOFB (IV, K, D) is D, encrypted with key K using GOST 28147/GOST R 34.13
* in "gammirovanie s obratnoj svyaziyu po vyhodu" (Output Feedback, OFB) mode, and IV is * in "gammirovanie s obratnoj svyaziyu po vyhodu" (Output Feedback, OFB) mode, and IV is
* used as the initialization vector. * used as the initialization vector.
* *
* @memberOf GostCipher * @memberOf GostCipher
* @method decrypt * @method decrypt
* @instance * @instance
* @param {CryptoOperationData} k 8x32 bits key * @param {CryptoOperationData} k 8x32 bits key
* @param {CryptoOperationData} d 8 bits array with data * @param {CryptoOperationData} d 8 bits array with data
* @param {CryptoOperationData} iv initial vector * @param {CryptoOperationData} iv initial vector
* @return {CryptoOperationData} result * @return {CryptoOperationData} result
*/ */
@ -965,29 +965,29 @@ function processOFB(k, d, iv) // <editor-fold defaultstate="collapsed">
/** /**
* Algorithm name GOST 28147-CTR<br><br> * Algorithm name GOST 28147-CTR<br><br>
* *
* encryptCTR/decryptCTR (IV, K, D) is D, encrypted with key K using GOST 28147/GOST R 34.13 * encryptCTR/decryptCTR (IV, K, D) is D, encrypted with key K using GOST 28147/GOST R 34.13
* in "gammirovanie" (Counter Mode-CTR) mode, and IV is used as the * in "gammirovanie" (Counter Mode-CTR) mode, and IV is used as the
* initialization vector. * initialization vector.
* @memberOf GostCipher * @memberOf GostCipher
* @method encrypt * @method encrypt
* @instance * @instance
* @param {CryptoOperationData} k 8x32 bits key * @param {CryptoOperationData} k 8x32 bits key
* @param {CryptoOperationData} d 8 bits array with data * @param {CryptoOperationData} d 8 bits array with data
* @param {CryptoOperationData} iv 8x8 optional bits initial vector * @param {CryptoOperationData} iv 8x8 optional bits initial vector
* @return {CryptoOperationData} result * @return {CryptoOperationData} result
*/ */
/** /**
* Algorithm name GOST 28147-CTR<br><br> * Algorithm name GOST 28147-CTR<br><br>
* *
* encryptCTR/decryptCTR (IV, K, D) is D, encrypted with key K using GOST 28147/GOST R 34.13 * encryptCTR/decryptCTR (IV, K, D) is D, encrypted with key K using GOST 28147/GOST R 34.13
* in "gammirovanie" (Counter Mode-CTR) mode, and IV is used as the * in "gammirovanie" (Counter Mode-CTR) mode, and IV is used as the
* initialization vector. * initialization vector.
* @memberOf GostCipher * @memberOf GostCipher
* @method decrypt * @method decrypt
* @instance * @instance
* @param {CryptoOperationData} k 8x32 bits key * @param {CryptoOperationData} k 8x32 bits key
* @param {CryptoOperationData} d 8 bits array with data * @param {CryptoOperationData} d 8 bits array with data
* @param {CryptoOperationData} iv initial vector * @param {CryptoOperationData} iv initial vector
* @return {CryptoOperationData} result * @return {CryptoOperationData} result
*/ */
@ -1081,16 +1081,16 @@ function processCTR15(k, d, iv) // <editor-fold defaultstate="collapsed">
/** /**
* Algorithm name GOST 28147-CBC<br><br> * Algorithm name GOST 28147-CBC<br><br>
* *
* encryptCBC (IV, K, D) is D, encrypted with key K using GOST 28147/GOST R 34.13 * encryptCBC (IV, K, D) is D, encrypted with key K using GOST 28147/GOST R 34.13
* in "Prostaya zamena s zatsepleniem" (Cipher-Block-Chaining, CBC) mode and IV is used as the initialization * in "Prostaya zamena s zatsepleniem" (Cipher-Block-Chaining, CBC) mode and IV is used as the initialization
* vector. * vector.
* *
* @memberOf GostCipher * @memberOf GostCipher
* @method encrypt * @method encrypt
* @instance * @instance
* @param {CryptoOperationData} k 8x32 bits key * @param {CryptoOperationData} k 8x32 bits key
* @param {CryptoOperationData} d 8 bits array with data * @param {CryptoOperationData} d 8 bits array with data
* @param {CryptoOperationData} iv initial vector * @param {CryptoOperationData} iv initial vector
* @return {CryptoOperationData} result * @return {CryptoOperationData} result
*/ */
@ -1128,16 +1128,16 @@ function encryptCBC(k, d, iv) // <editor-fold defaultstate="collapsed">
/** /**
* Algorithm name GOST 28147-CBC<br><br> * Algorithm name GOST 28147-CBC<br><br>
* *
* decryptCBC (IV, K, D) is D, decrypted with key K using GOST 28147/GOST R 34.13 * decryptCBC (IV, K, D) is D, decrypted with key K using GOST 28147/GOST R 34.13
* in "Prostaya zamena s zatsepleniem" (Cipher-Block-Chaining, CBC) mode and IV is used as the initialization * in "Prostaya zamena s zatsepleniem" (Cipher-Block-Chaining, CBC) mode and IV is used as the initialization
* vector. * vector.
* *
* @memberOf GostCipher * @memberOf GostCipher
* @method decrypt * @method decrypt
* @instance * @instance
* @param {CryptoOperationData} k 8x32 bits key * @param {CryptoOperationData} k 8x32 bits key
* @param {CryptoOperationData} d 8 bits array with data * @param {CryptoOperationData} d 8 bits array with data
* @param {CryptoOperationData} iv initial vector * @param {CryptoOperationData} iv initial vector
* @return {CryptoOperationData} result * @return {CryptoOperationData} result
*/ */
@ -1176,7 +1176,7 @@ function decryptCBC(k, d, iv) // <editor-fold defaultstate="collapsed">
/** /**
* The generateKey method returns a new generated key. * The generateKey method returns a new generated key.
* *
* @memberOf GostCipher * @memberOf GostCipher
* @method generateKey * @method generateKey
* @instance * @instance
@ -1193,18 +1193,18 @@ function generateKey() // <editor-fold defaultstate="collapsed">
/** /**
* makeIMIT (K, D) is the 32-bit result of the GOST 28147/GOST R 34.13 in * makeIMIT (K, D) is the 32-bit result of the GOST 28147/GOST R 34.13 in
* "imitovstavka" (MAC) mode, used with D as plaintext, K as key and IV * "imitovstavka" (MAC) mode, used with D as plaintext, K as key and IV
* as initialization vector. Note that the standard specifies its use * as initialization vector. Note that the standard specifies its use
* in this mode only with an initialization vector of zero. * in this mode only with an initialization vector of zero.
* *
* @memberOf GostCipher * @memberOf GostCipher
* @method processMAC * @method processMAC
* @private * @private
* @instance * @instance
* @param {Int32Array} key 8x32 bits key * @param {Int32Array} key 8x32 bits key
* @param {Int32Array} s 8x8 sum array * @param {Int32Array} s 8x8 sum array
* @param {Uint8Array} d 8 bits array with data * @param {Uint8Array} d 8 bits array with data
* @return {Uint8Array} result * @return {Uint8Array} result
*/ */
function processMAC89(key, s, d) // <editor-fold defaultstate="collapsed"> function processMAC89(key, s, d) // <editor-fold defaultstate="collapsed">
@ -1271,16 +1271,16 @@ function processMAC15(key, s, d) // <editor-fold defaultstate="collapsed">
} // </editor-fold> } // </editor-fold>
/** /**
* signMAC (K, D, IV) is the 32-bit result of the GOST 28147/GOST R 34.13 in * signMAC (K, D, IV) is the 32-bit result of the GOST 28147/GOST R 34.13 in
* "imitovstavka" (MAC) mode, used with D as plaintext, K as key and IV * "imitovstavka" (MAC) mode, used with D as plaintext, K as key and IV
* as initialization vector. Note that the standard specifies its use * as initialization vector. Note that the standard specifies its use
* in this mode only with an initialization vector of zero. * in this mode only with an initialization vector of zero.
* *
* @memberOf GostCipher * @memberOf GostCipher
* @method sign * @method sign
* @instance * @instance
* @param {CryptoOperationData} k 8x32 bits key * @param {CryptoOperationData} k 8x32 bits key
* @param {CryptoOperationData} d 8 bits array with data * @param {CryptoOperationData} d 8 bits array with data
* @param {CryptoOperationData} iv initial vector * @param {CryptoOperationData} iv initial vector
* @return {CryptoOperationData} result * @return {CryptoOperationData} result
*/ */
@ -1298,17 +1298,17 @@ function signMAC(k, d, iv) // <editor-fold defaultstate="collapsed">
} // </editor-fold> } // </editor-fold>
/** /**
* verifyMAC (K, M, D, IV) the 32-bit result verification of the GOST 28147/GOST R 34.13 in * verifyMAC (K, M, D, IV) the 32-bit result verification of the GOST 28147/GOST R 34.13 in
* "imitovstavka" (MAC) mode, used with D as plaintext, K as key and IV * "imitovstavka" (MAC) mode, used with D as plaintext, K as key and IV
* as initialization vector. Note that the standard specifies its use * as initialization vector. Note that the standard specifies its use
* in this mode only with an initialization vector of zero. * in this mode only with an initialization vector of zero.
* *
* @memberOf GostCipher * @memberOf GostCipher
* @method verify * @method verify
* @instance * @instance
* @param {CryptoOperationData} k 8x32 bits key * @param {CryptoOperationData} k 8x32 bits key
* @param {CryptoOperationData} m 8 bits array with signature * @param {CryptoOperationData} m 8 bits array with signature
* @param {CryptoOperationData} d 8 bits array with data * @param {CryptoOperationData} d 8 bits array with data
* @param {CryptoOperationData} iv 8x8 optional bits initial vector * @param {CryptoOperationData} iv 8x8 optional bits initial vector
* @return {boolen} MAC verified = true * @return {boolen} MAC verified = true
*/ */
@ -1326,14 +1326,14 @@ function verifyMAC(k, m, d, iv) // <editor-fold defaultstate="collapsed">
/** /**
* Algorithm name GOST 28147-KW<br><br> * Algorithm name GOST 28147-KW<br><br>
* *
* This algorithm encrypts GOST 28147-89 CEK with a GOST 28147/GOST R 34.13 KEK. * This algorithm encrypts GOST 28147-89 CEK with a GOST 28147/GOST R 34.13 KEK.
* Ref. rfc4357 6.1 GOST 28147-89 Key Wrap * Ref. rfc4357 6.1 GOST 28147-89 Key Wrap
* Note: This algorithm MUST NOT be used with a KEK produced by VKO GOST * Note: This algorithm MUST NOT be used with a KEK produced by VKO GOST
* R 34.10-94, because such a KEK is constant for every sender-recipient * R 34.10-94, because such a KEK is constant for every sender-recipient
* pair. Encrypting many different content encryption keys on the same * pair. Encrypting many different content encryption keys on the same
* constant KEK may reveal that KEK. * constant KEK may reveal that KEK.
* *
* @memberOf GostCipher * @memberOf GostCipher
* @method wrapKey * @method wrapKey
* @instance * @instance
@ -1344,14 +1344,14 @@ function verifyMAC(k, m, d, iv) // <editor-fold defaultstate="collapsed">
function wrapKeyGOST(kek, cek) // <editor-fold defaultstate="collapsed"> function wrapKeyGOST(kek, cek) // <editor-fold defaultstate="collapsed">
{ {
var n = this.blockSize, k = this.keySize, len = k + (n >> 1); var n = this.blockSize, k = this.keySize, len = k + (n >> 1);
// 1) For a unique symmetric KEK, generate 8 octets at random and call // 1) For a unique symmetric KEK, generate 8 octets at random and call
// the result UKM. For a KEK, produced by VKO GOST R 34.10-2001, use // the result UKM. For a KEK, produced by VKO GOST R 34.10-2001, use
// the UKM that was used for key derivation. // the UKM that was used for key derivation.
if (!this.ukm) if (!this.ukm)
throw new DataError('UKM must be defined'); throw new DataError('UKM must be defined');
var ukm = new Uint8Array(this.ukm); var ukm = new Uint8Array(this.ukm);
// 2) Compute a 4-byte checksum value, GOST 28147IMIT (UKM, KEK, CEK). // 2) Compute a 4-byte checksum value, GOST 28147IMIT (UKM, KEK, CEK).
// Call the result CEK_MAC. // Call the result CEK_MAC.
var mac = signMAC.call(this, kek, cek, ukm); var mac = signMAC.call(this, kek, cek, ukm);
// 3) Encrypt the CEK in ECB mode using the KEK. Call the ciphertext CEK_ENC. // 3) Encrypt the CEK in ECB mode using the KEK. Call the ciphertext CEK_ENC.
var enc = encryptECB.call(this, kek, cek); var enc = encryptECB.call(this, kek, cek);
@ -1364,10 +1364,10 @@ function wrapKeyGOST(kek, cek) // <editor-fold defaultstate="collapsed">
/** /**
* Algorithm name GOST 28147-KW<br><br> * Algorithm name GOST 28147-KW<br><br>
* *
* This algorithm decrypts GOST 28147-89 CEK with a GOST 28147 KEK. * This algorithm decrypts GOST 28147-89 CEK with a GOST 28147 KEK.
* Ref. rfc4357 6.2 GOST 28147-89 Key Unwrap * Ref. rfc4357 6.2 GOST 28147-89 Key Unwrap
* *
* @memberOf GostCipher * @memberOf GostCipher
* @method unwrapKey * @method unwrapKey
* @instance * @instance
@ -1382,9 +1382,9 @@ function unwrapKeyGOST(kek, data) // <editor-fold defaultstate="collapsed">
var d = buffer(data); var d = buffer(data);
if (d.byteLength !== len) if (d.byteLength !== len)
throw new DataError('Wrapping key size must be ' + len + ' bytes'); throw new DataError('Wrapping key size must be ' + len + ' bytes');
// 2) Decompose the wrapped content-encryption key into UKM, CEK_ENC, and CEK_MAC. // 2) Decompose the wrapped content-encryption key into UKM, CEK_ENC, and CEK_MAC.
// UKM is the most significant (first) 8 octets. CEK_ENC is next 32 octets, // UKM is the most significant (first) 8 octets. CEK_ENC is next 32 octets,
// and CEK_MAC is the least significant (last) 4 octets. // and CEK_MAC is the least significant (last) 4 octets.
if (!this.ukm) if (!this.ukm)
throw new DataError('UKM must be defined'); throw new DataError('UKM must be defined');
var ukm = new Uint8Array(this.ukm), var ukm = new Uint8Array(this.ukm),
@ -1392,7 +1392,7 @@ function unwrapKeyGOST(kek, data) // <editor-fold defaultstate="collapsed">
mac = new Uint8Array(d, k, n >> 1); mac = new Uint8Array(d, k, n >> 1);
// 3) Decrypt CEK_ENC in ECB mode using the KEK. Call the output CEK. // 3) Decrypt CEK_ENC in ECB mode using the KEK. Call the output CEK.
var cek = decryptECB.call(this, kek, enc); var cek = decryptECB.call(this, kek, enc);
// 4) Compute a 4-byte checksum value, GOST 28147IMIT (UKM, KEK, CEK), // 4) Compute a 4-byte checksum value, GOST 28147IMIT (UKM, KEK, CEK),
// compare the result with CEK_MAC. If they are not equal, then error. // compare the result with CEK_MAC. If they are not equal, then error.
var check = verifyMAC.call(this, kek, mac, cek, ukm); var check = verifyMAC.call(this, kek, mac, cek, ukm);
if (!check) if (!check)
@ -1402,11 +1402,11 @@ function unwrapKeyGOST(kek, data) // <editor-fold defaultstate="collapsed">
/** /**
* Algorithm name GOST 28147-CPKW<br><br> * Algorithm name GOST 28147-CPKW<br><br>
* *
* Given a random 64-bit UKM and a GOST 28147 key K, this algorithm * Given a random 64-bit UKM and a GOST 28147 key K, this algorithm
* creates a new GOST 28147-89 key K(UKM). * creates a new GOST 28147-89 key K(UKM).
* Ref. rfc4357 6.3 CryptoPro KEK Diversification Algorithm * Ref. rfc4357 6.3 CryptoPro KEK Diversification Algorithm
* *
* @memberOf GostCipher * @memberOf GostCipher
* @method diversify * @method diversify
* @instance * @instance
@ -1419,10 +1419,10 @@ function diversifyKEK(kek, ukm) // <editor-fold defaultstate="collapsed">
{ {
var n = this.blockSize; var n = this.blockSize;
// 1) Let K[0] = K; // 1) Let K[0] = K;
var k = intArray(kek); var k = intArray(kek);
// 2) UKM is split into components a[i,j]: // 2) UKM is split into components a[i,j]:
// UKM = a[0]|..|a[7] (a[i] - byte, a[i,0]..a[i,7] - its bits) // UKM = a[0]|..|a[7] (a[i] - byte, a[i,0]..a[i,7] - its bits)
var a = []; var a = [];
for (var i = 0; i < n; i++) { for (var i = 0; i < n; i++) {
a[i] = []; a[i] = [];
@ -1430,15 +1430,15 @@ function diversifyKEK(kek, ukm) // <editor-fold defaultstate="collapsed">
a[i][j] = (ukm[i] >>> j) & 0x1; a[i][j] = (ukm[i] >>> j) & 0x1;
} }
} }
// 3) Let i be 0. // 3) Let i be 0.
// 4) K[1]..K[8] are calculated by repeating the following algorithm // 4) K[1]..K[8] are calculated by repeating the following algorithm
// eight times: // eight times:
for (var i = 0; i < n; i++) { for (var i = 0; i < n; i++) {
// A) K[i] is split into components k[i,j]: // A) K[i] is split into components k[i,j]:
// K[i] = k[i,0]|k[i,1]|..|k[i,7] (k[i,j] - 32-bit integer) // K[i] = k[i,0]|k[i,1]|..|k[i,7] (k[i,j] - 32-bit integer)
// B) Vector S[i] is calculated: // B) Vector S[i] is calculated:
// S[i] = ((a[i,0]*k[i,0] + ... + a[i,7]*k[i,7]) mod 2^32) | // S[i] = ((a[i,0]*k[i,0] + ... + a[i,7]*k[i,7]) mod 2^32) |
// (((~a[i,0])*k[i,0] + ... + (~a[i,7])*k[i,7]) mod 2^32); // (((~a[i,0])*k[i,0] + ... + (~a[i,7])*k[i,7]) mod 2^32);
var s = new Int32Array(2); var s = new Int32Array(2);
for (var j = 0; j < 8; j++) { for (var j = 0; j < 8; j++) {
if (a[i][j]) if (a[i][j])
@ -1457,12 +1457,12 @@ function diversifyKEK(kek, ukm) // <editor-fold defaultstate="collapsed">
/** /**
* Algorithm name GOST 28147-CPKW<br><br> * Algorithm name GOST 28147-CPKW<br><br>
* *
* This algorithm encrypts GOST 28147-89 CEK with a GOST 28147 KEK. * This algorithm encrypts GOST 28147-89 CEK with a GOST 28147 KEK.
* It can be used with any KEK (e.g., produced by VKO GOST R 34.10-94 or * It can be used with any KEK (e.g., produced by VKO GOST R 34.10-94 or
* VKO GOST R 34.10-2001) because a unique UKM is used to diversify the KEK. * VKO GOST R 34.10-2001) because a unique UKM is used to diversify the KEK.
* Ref. rfc4357 6.3 CryptoPro Key Wrap * Ref. rfc4357 6.3 CryptoPro Key Wrap
* *
* @memberOf GostCipher * @memberOf GostCipher
* @method wrapKey * @method wrapKey
* @instance * @instance
@ -1473,21 +1473,21 @@ function diversifyKEK(kek, ukm) // <editor-fold defaultstate="collapsed">
function wrapKeyCP(kek, cek) // <editor-fold defaultstate="collapsed"> function wrapKeyCP(kek, cek) // <editor-fold defaultstate="collapsed">
{ {
var n = this.blockSize, k = this.keySize, len = k + (n >> 1); var n = this.blockSize, k = this.keySize, len = k + (n >> 1);
// 1) For a unique symmetric KEK or a KEK produced by VKO GOST R // 1) For a unique symmetric KEK or a KEK produced by VKO GOST R
// 34.10-94, generate 8 octets at random. Call the result UKM. For // 34.10-94, generate 8 octets at random. Call the result UKM. For
// a KEK, produced by VKO GOST R 34.10-2001, use the UKM that was // a KEK, produced by VKO GOST R 34.10-2001, use the UKM that was
// used for key derivation. // used for key derivation.
if (!this.ukm) if (!this.ukm)
throw new DataError('UKM must be defined'); throw new DataError('UKM must be defined');
var ukm = new Uint8Array(this.ukm); var ukm = new Uint8Array(this.ukm);
// 2) Diversify KEK, using the CryptoPro KEK Diversification Algorithm, // 2) Diversify KEK, using the CryptoPro KEK Diversification Algorithm,
// described in Section 6.5. Call the result KEK(UKM). // described in Section 6.5. Call the result KEK(UKM).
var dek = diversifyKEK.call(this, kek, ukm); var dek = diversifyKEK.call(this, kek, ukm);
// 3) Compute a 4-byte checksum value, GOST 28147IMIT (UKM, KEK(UKM), // 3) Compute a 4-byte checksum value, GOST 28147IMIT (UKM, KEK(UKM),
// CEK). Call the result CEK_MAC. // CEK). Call the result CEK_MAC.
var mac = signMAC.call(this, dek, cek, ukm); var mac = signMAC.call(this, dek, cek, ukm);
// 4) Encrypt CEK in ECB mode using KEK(UKM). Call the ciphertext // 4) Encrypt CEK in ECB mode using KEK(UKM). Call the ciphertext
// CEK_ENC. // CEK_ENC.
var enc = encryptECB.call(this, dek, cek); var enc = encryptECB.call(this, dek, cek);
// 5) The wrapped content-encryption key is (UKM | CEK_ENC | CEK_MAC). // 5) The wrapped content-encryption key is (UKM | CEK_ENC | CEK_MAC).
var r = new Uint8Array(len); var r = new Uint8Array(len);
@ -1498,8 +1498,8 @@ function wrapKeyCP(kek, cek) // <editor-fold defaultstate="collapsed">
/** /**
* Algorithm name GOST 28147-CPKW<br><br> * Algorithm name GOST 28147-CPKW<br><br>
* *
* This algorithm encrypts GOST 28147-89 CEK with a GOST 28147 KEK. * This algorithm encrypts GOST 28147-89 CEK with a GOST 28147 KEK.
* Ref. rfc4357 6.4 CryptoPro Key Unwrap * Ref. rfc4357 6.4 CryptoPro Key Unwrap
* *
* @memberOf GostCipher * @memberOf GostCipher
@ -1512,26 +1512,26 @@ function wrapKeyCP(kek, cek) // <editor-fold defaultstate="collapsed">
function unwrapKeyCP(kek, data) // <editor-fold defaultstate="collapsed"> function unwrapKeyCP(kek, data) // <editor-fold defaultstate="collapsed">
{ {
var n = this.blockSize, k = this.keySize, len = k + (n >> 1); var n = this.blockSize, k = this.keySize, len = k + (n >> 1);
// 1) If the wrapped content-encryption key is not 44 octets, then error. // 1) If the wrapped content-encryption key is not 44 octets, then error.
var d = buffer(data); var d = buffer(data);
if (d.byteLength !== len) if (d.byteLength !== len)
throw new DataError('Wrapping key size must be ' + len + ' bytes'); throw new DataError('Wrapping key size must be ' + len + ' bytes');
// 2) Decompose the wrapped content-encryption key into UKM, CEK_ENC, // 2) Decompose the wrapped content-encryption key into UKM, CEK_ENC,
// and CEK_MAC. UKM is the most significant (first) 8 octets. // and CEK_MAC. UKM is the most significant (first) 8 octets.
// CEK_ENC is next 32 octets, and CEK_MAC is the least significant // CEK_ENC is next 32 octets, and CEK_MAC is the least significant
// (last) 4 octets. // (last) 4 octets.
if (!this.ukm) if (!this.ukm)
throw new DataError('UKM must be defined'); throw new DataError('UKM must be defined');
var ukm = new Uint8Array(this.ukm), var ukm = new Uint8Array(this.ukm),
enc = new Uint8Array(d, 0, k), enc = new Uint8Array(d, 0, k),
mac = new Uint8Array(d, k, n >> 1); mac = new Uint8Array(d, k, n >> 1);
// 3) Diversify KEK using the CryptoPro KEK Diversification Algorithm, // 3) Diversify KEK using the CryptoPro KEK Diversification Algorithm,
// described in section 6.5. Call the result KEK(UKM). // described in section 6.5. Call the result KEK(UKM).
var dek = diversifyKEK.call(this, kek, ukm); var dek = diversifyKEK.call(this, kek, ukm);
// 4) Decrypt CEK_ENC in ECB mode using KEK(UKM). Call the output CEK. // 4) Decrypt CEK_ENC in ECB mode using KEK(UKM). Call the output CEK.
var cek = decryptECB.call(this, dek, enc); var cek = decryptECB.call(this, dek, enc);
// 5) Compute a 4-byte checksum value, GOST 28147IMIT (UKM, KEK(UKM), // 5) Compute a 4-byte checksum value, GOST 28147IMIT (UKM, KEK(UKM),
// CEK), compare the result with CEK_MAC. If they are not equal, // CEK), compare the result with CEK_MAC. If they are not equal,
// then it is an error. // then it is an error.
var check = verifyMAC.call(this, dek, mac, cek, ukm); var check = verifyMAC.call(this, dek, mac, cek, ukm);
if (!check) if (!check)
@ -1541,23 +1541,23 @@ function unwrapKeyCP(kek, data) // <editor-fold defaultstate="collapsed">
/** /**
* SignalCom master key packing algorithm * SignalCom master key packing algorithm
* *
* kek stored in 3 files - kek.opq, mk.db3, masks.db3 * kek stored in 3 files - kek.opq, mk.db3, masks.db3
* kek.opq - always 36 bytes length = 32 bytes encrypted kek + 4 bytes mac of decrypted kek * kek.opq - always 36 bytes length = 32 bytes encrypted kek + 4 bytes mac of decrypted kek
* mk.db3 - 6 bytes header (1 byte magic code 0x22 + 1 byte count of masks + 4 bytes mac of * mk.db3 - 6 bytes header (1 byte magic code 0x22 + 1 byte count of masks + 4 bytes mac of
* xor summarizing masks value) + attached masks * xor summarizing masks value) + attached masks
* masks.db3 - detached masks. * masks.db3 - detached masks.
* Total length of attached + detached masks = 32 bits * count of masks * Total length of attached + detached masks = 32 bits * count of masks
* Default value of count 8 = (7 attached + 1 detached). But really no reason for such * Default value of count 8 = (7 attached + 1 detached). But really no reason for such
* separation - all masks xor summarizing - order is not matter. * separation - all masks xor summarizing - order is not matter.
* Content of file rand.opq can used as ukm. Don't forget change file content after using. * Content of file rand.opq can used as ukm. Don't forget change file content after using.
* *
* For usb-token files has names: * For usb-token files has names:
* a001 - mk.db3, b001 - masks.db3, c001 - kek.opq, d001 - rand.opq * a001 - mk.db3, b001 - masks.db3, c001 - kek.opq, d001 - rand.opq
* For windows registry * For windows registry
* 00000001 - mk.db3, 00000002 - masks.db3, 00000003 - key.opq, 00000004 - rand.opq, * 00000001 - mk.db3, 00000002 - masks.db3, 00000003 - key.opq, 00000004 - rand.opq,
* 00000006 - keys\00000001.key, 0000000A - certificate * 00000006 - keys\00000001.key, 0000000A - certificate
* *
* @memberOf GostCipher * @memberOf GostCipher
* @method packKey * @method packKey
* @instance * @instance
@ -1603,9 +1603,9 @@ function packKeySC(unpacked, ukm) // <editor-fold defaultstate="collapsed">
/** /**
* Algorithm name GOST 28147-SCKW<br><br> * Algorithm name GOST 28147-SCKW<br><br>
* *
* SignalCom master key unpacking algorithm * SignalCom master key unpacking algorithm
* *
* @memberOf GostCipher * @memberOf GostCipher
* @method unpackKey * @method unpackKey
* @instance * @instance
@ -1650,14 +1650,14 @@ function unpackKeySC(packed) // <editor-fold defaultstate="collapsed">
/** /**
* Algorithm name GOST 28147-SCKW<br><br> * Algorithm name GOST 28147-SCKW<br><br>
* *
* SignalCom Key Wrapping algorithm * SignalCom Key Wrapping algorithm
* *
* @memberOf GostCipher * @memberOf GostCipher
* @method wrapKey * @method wrapKey
* @instance * @instance
* @param {CryptoOperationData} kek - clear kek or concatination of mk.db3 + masks.db3 * @param {CryptoOperationData} kek - clear kek or concatination of mk.db3 + masks.db3
* @param {CryptoOperationData} cek - key for wrapping * @param {CryptoOperationData} cek - key for wrapping
* @returns {CryptoOperationData} wrapped key - file kek.opq * @returns {CryptoOperationData} wrapped key - file kek.opq
*/ */
function wrapKeySC(kek, cek) // <editor-fold defaultstate="collapsed"> function wrapKeySC(kek, cek) // <editor-fold defaultstate="collapsed">
@ -1677,13 +1677,13 @@ function wrapKeySC(kek, cek) // <editor-fold defaultstate="collapsed">
/** /**
* Algorithm name GOST 28147-SCKW<br><br> * Algorithm name GOST 28147-SCKW<br><br>
* *
* SignalCom Key UnWrapping algorithm * SignalCom Key UnWrapping algorithm
* *
* @memberOf GostCipher * @memberOf GostCipher
* @method unwrapKey * @method unwrapKey
* @instance * @instance
* @param {CryptoOperationData} kek - concatination of files mk.db3 + masks.db3 or clear kek * @param {CryptoOperationData} kek - concatination of files mk.db3 + masks.db3 or clear kek
* @param {CryptoOperationData} cek - wrapping key - file kek.opq * @param {CryptoOperationData} cek - wrapping key - file kek.opq
* @return {CryptoOperationData} result * @return {CryptoOperationData} result
*/ */
@ -1704,9 +1704,9 @@ function unwrapKeySC(kek, cek) // <editor-fold defaultstate="collapsed">
/** /**
* Algorithm name GOST 28147-SCKW<br><br> * Algorithm name GOST 28147-SCKW<br><br>
* *
* SignalCom master key generation for wrapping * SignalCom master key generation for wrapping
* *
* @memberOf GostCipher * @memberOf GostCipher
* @method generateKey * @method generateKey
* @instance * @instance
@ -1719,24 +1719,24 @@ function generateWrappingKeySC() // <editor-fold defaultstate="collapsed">
function maskKey(mask, key, inverse, keySize) // <editor-fold defaultstate="collapsed"> function maskKey(mask, key, inverse, keySize) // <editor-fold defaultstate="collapsed">
{ {
var k = keySize / 4, var k = keySize / 4,
m32 = new Int32Array(buffer(mask)), m32 = new Int32Array(buffer(mask)),
k32 = new Int32Array(buffer(key)), k32 = new Int32Array(buffer(key)),
r32 = new Int32Array(k); r32 = new Int32Array(k);
if (inverse) if (inverse)
for (var i = 0; i < k; i++) for (var i = 0; i < k; i++)
r32[i] = (k32[i] + m32[i]) & 0xffffffff; r32[i] = (k32[i] + m32[i]) & 0xffffffff;
else else
for (var i = 0; i < k; i++) for (var i = 0; i < k; i++)
r32[i] = (k32[i] - m32[i]) & 0xffffffff; r32[i] = (k32[i] - m32[i]) & 0xffffffff;
return r32.buffer; return r32.buffer;
} // </editor-fold> } // </editor-fold>
/** /**
* Algorithm name GOST 28147-MASK<br><br> * Algorithm name GOST 28147-MASK<br><br>
* *
* This algorithm wrap key mask * This algorithm wrap key mask
* *
* @memberOf GostCipher * @memberOf GostCipher
* @method wrapKey * @method wrapKey
* @instance * @instance
@ -1751,7 +1751,7 @@ function wrapKeyMask(mask, key) // <editor-fold defaultstate="collapsed">
/** /**
* Algorithm name GOST 28147-CPKW<br><br> * Algorithm name GOST 28147-CPKW<br><br>
* *
* This algorithm unwrap key mask * This algorithm unwrap key mask
* *
* @memberOf GostCipher * @memberOf GostCipher
@ -1768,17 +1768,17 @@ function unwrapKeyMask(mask, key) // <editor-fold defaultstate="collapsed">
/** /**
* Algorithm name GOST 28147-CPKM<br><br> * Algorithm name GOST 28147-CPKM<br><br>
* *
* Key meshing in according to rfc4357 2.3.2. CryptoPro Key Meshing * Key meshing in according to rfc4357 2.3.2. CryptoPro Key Meshing
* *
* @memberOf GostCipher * @memberOf GostCipher
* @method keyMeshing * @method keyMeshing
* @instance * @instance
* @private * @private
* @param {(Uint8Array|CryptoOperationData)} k 8x8 bit key * @param {(Uint8Array|CryptoOperationData)} k 8x8 bit key
* @param {Uint8Array} s 8x8 bit sync (iv) * @param {Uint8Array} s 8x8 bit sync (iv)
* @param {Integer} i block index * @param {Integer} i block index
* @param {Int32Array} key 8x32 bit key schedule * @param {Int32Array} key 8x32 bit key schedule
* @param {boolean} e true - decrypt * @param {boolean} e true - decrypt
* @returns CryptoOperationData next 8x8 bit key * @returns CryptoOperationData next 8x8 bit key
*/ */
@ -1797,12 +1797,12 @@ function keyMeshingCP(k, s, i, key, e) // <editor-fold defaultstate="collapsed">
/** /**
* Null Key Meshing in according to rfc4357 2.3.1 * Null Key Meshing in according to rfc4357 2.3.1
* *
* @memberOf GostCipher * @memberOf GostCipher
* @method keyMeshing * @method keyMeshing
* @instance * @instance
* @private * @private
* @param {(Uint8Array|CryptoOperationData)} k 8x8 bit key * @param {(Uint8Array|CryptoOperationData)} k 8x8 bit key
*/ */
function noKeyMeshing(k) // <editor-fold defaultstate="collapsed"> function noKeyMeshing(k) // <editor-fold defaultstate="collapsed">
{ {
@ -1811,9 +1811,9 @@ function noKeyMeshing(k) // <editor-fold defaultstate="collapsed">
/** /**
* Algorithm name GOST 28147-NoPadding<br><br> * Algorithm name GOST 28147-NoPadding<br><br>
* *
* No padding. * No padding.
* *
* @memberOf GostCipher * @memberOf GostCipher
* @method padding * @method padding
* @instance * @instance
@ -1828,11 +1828,11 @@ function noPad(d) // <editor-fold defaultstate="collapsed">
/** /**
* Algorithm name GOST 28147-PKCS5Padding<br><br> * Algorithm name GOST 28147-PKCS5Padding<br><br>
* *
* PKCS#5 padding: 8-x remaining bytes are filled with the value of * PKCS#5 padding: 8-x remaining bytes are filled with the value of
* 8-x. If theres no incomplete block, one extra block filled with * 8-x. If theres no incomplete block, one extra block filled with
* value 8 is added * value 8 is added
* *
* @memberOf GostCipher * @memberOf GostCipher
* @method padding * @method padding
* @instance * @instance
@ -1870,9 +1870,9 @@ function pkcs5Unpad(d) // <editor-fold defaultstate="collapsed">
/** /**
* Algorithm name GOST 28147-ZeroPadding<br><br> * Algorithm name GOST 28147-ZeroPadding<br><br>
* *
* Zero padding: 8-x remaining bytes are filled with zero * Zero padding: 8-x remaining bytes are filled with zero
* *
* @memberOf GostCipher * @memberOf GostCipher
* @method padding * @method padding
* @instance * @instance
@ -1895,10 +1895,10 @@ function zeroPad(d) // <editor-fold defaultstate="collapsed">
/** /**
* Algorithm name GOST 28147-BitPadding<br><br> * Algorithm name GOST 28147-BitPadding<br><br>
* *
* Bit padding: P* = P || 1 || 000...0 If theres no incomplete block, * Bit padding: P* = P || 1 || 000...0 If theres no incomplete block,
* one extra block filled with 1 || 000...0 * one extra block filled with 1 || 000...0
* *
* @memberOf GostCipher * @memberOf GostCipher
* @method padding * @method padding
* @instance * @instance
@ -1906,7 +1906,7 @@ function zeroPad(d) // <editor-fold defaultstate="collapsed">
* @param {Uint8Array} d array with source data * @param {Uint8Array} d array with source data
* @returns {Uint8Array} result * @returns {Uint8Array} result
*/ */
function bitPad(d) // <editor-fold defaultstate="collapsed"> function bitPad(d) // <editor-fold defaultstate="collapsed">
{ {
var n = d.byteLength, var n = d.byteLength,
nb = this.blockSize, nb = this.blockSize,
@ -1919,7 +1919,7 @@ function bitPad(d) // <editor-fold defaultstate="collapsed">
return r; return r;
} // </editor-fold> } // </editor-fold>
function bitUnpad(d) // <editor-fold defaultstate="collapsed"> function bitUnpad(d) // <editor-fold defaultstate="collapsed">
{ {
var m = d.byteLength, var m = d.byteLength,
n = m; n = m;
@ -1936,10 +1936,10 @@ function bitUnpad(d) // <editor-fold defaultstate="collapsed">
/** /**
* Algorithm name GOST 28147-RandomPadding<br><br> * Algorithm name GOST 28147-RandomPadding<br><br>
* *
* Random padding: 8-x remaining bytes of the last block are set to * Random padding: 8-x remaining bytes of the last block are set to
* random. * random.
* *
* @memberOf GostCipher * @memberOf GostCipher
* @method padding * @method padding
* @instance * @instance
@ -1960,15 +1960,15 @@ function randomPad(d) // <editor-fold defaultstate="collapsed">
} // </editor-fold> } // </editor-fold>
/** /**
* GOST 28147-89 Encryption Algorithm<br><br> * GOST 28147-89 Encryption Algorithm<br><br>
* *
* References {@link http://tools.ietf.org/html/rfc5830}<br><br> * References {@link http://tools.ietf.org/html/rfc5830}<br><br>
* *
* When keys and initialization vectors are converted to/from byte arrays, * When keys and initialization vectors are converted to/from byte arrays,
* little-endian byte order is assumed.<br><br> * little-endian byte order is assumed.<br><br>
* *
* Normalized algorithm identifier common parameters: * Normalized algorithm identifier common parameters:
* *
* <ul> * <ul>
* <li><b>name</b> Algorithm name 'GOST 28147' or 'GOST R 34.12'</li> * <li><b>name</b> Algorithm name 'GOST 28147' or 'GOST R 34.12'</li>
* <li><b>version</b> Algorithm version, number * <li><b>version</b> Algorithm version, number
@ -1992,9 +1992,9 @@ function randomPad(d) // <editor-fold defaultstate="collapsed">
* </li> * </li>
* <li><b>sBox</b> Paramset sBox for GOST 28147-89, string. Used only if version = 1989</li> * <li><b>sBox</b> Paramset sBox for GOST 28147-89, string. Used only if version = 1989</li>
* </ul> * </ul>
* *
* Supported algorithms, modes and parameters: * Supported algorithms, modes and parameters:
* *
* <ul> * <ul>
* <li>Encript/Decrypt mode (ES) * <li>Encript/Decrypt mode (ES)
* <ul> * <ul>
@ -2017,9 +2017,9 @@ function randomPad(d) // <editor-fold defaultstate="collapsed">
* </ul> * </ul>
* </li> * </li>
* </ul> * </ul>
* *
* Supported paramters values: * Supported paramters values:
* *
* <ul> * <ul>
* <li>Block modes (parameter 'block') * <li>Block modes (parameter 'block')
* <ul> * <ul>
@ -2053,7 +2053,7 @@ function randomPad(d) // <editor-fold defaultstate="collapsed">
* </ul> * </ul>
* </li> * </li>
* </ul> * </ul>
* *
* @class GostCipher * @class GostCipher
* @param {AlgorithmIndentifier} algorithm WebCryptoAPI algorithm identifier * @param {AlgorithmIndentifier} algorithm WebCryptoAPI algorithm identifier
*/ */
@ -2076,7 +2076,7 @@ function GostCipher(algorithm) // <editor-fold defaultstate="collapsed">
((algorithm.keyWrapping || 'NO') !== 'NO' ? algorithm.keyWrapping : '') + 'KW' : ((algorithm.keyWrapping || 'NO') !== 'NO' ? algorithm.keyWrapping : '') + 'KW' :
(algorithm.block || 'ECB') + ((algorithm.block === 'CFB' || algorithm.block === 'OFB' || (algorithm.block || 'ECB') + ((algorithm.block === 'CFB' || algorithm.block === 'OFB' ||
(algorithm.block === 'CTR' && algorithm.version === 2015)) && (algorithm.block === 'CTR' && algorithm.version === 2015)) &&
algorithm.shiftBits && algorithm.shiftBits !== this.blockLength ? '-' + algorithm.shiftBits : '') + algorithm?.shiftBits !== this.blockLength ? '-' + algorithm.shiftBits : '') +
(algorithm.padding ? '-' + (algorithm.padding || (algorithm.block === 'CTR' || (algorithm.padding ? '-' + (algorithm.padding || (algorithm.block === 'CTR' ||
algorithm.block === 'CFB' || algorithm.block === 'OFB' ? 'NO' : 'ZERO')) + 'PADDING' : '') + algorithm.block === 'CFB' || algorithm.block === 'OFB' ? 'NO' : 'ZERO')) + 'PADDING' : '') +
((algorithm.keyMeshing || 'NO') !== 'NO' ? '-CPKEYMESHING' : '')) + ((algorithm.keyMeshing || 'NO') !== 'NO' ? '-CPKEYMESHING' : '')) +
@ -2085,7 +2085,7 @@ function GostCipher(algorithm) // <editor-fold defaultstate="collapsed">
// Algorithm procreator // Algorithm procreator
this.procreator = algorithm.procreator; this.procreator = algorithm.procreator;
switch (algorithm.version || 1989) { switch (algorithm.version || 1989) {
case 1: case 1:
this.process = processRC2; this.process = processRC2;

View file

@ -2,7 +2,7 @@
* Coding algorithms: Base64, Hex, Int16, Chars, BER and PEM * Coding algorithms: Base64, Hex, Int16, Chars, BER and PEM
* version 1.76 * version 1.76
* 2014-2016, Rudolf Nickolaev. All rights reserved. * 2014-2016, Rudolf Nickolaev. All rights reserved.
* *
* Exported for CyberChef by mshwed [m@ttshwed.com] * Exported for CyberChef by mshwed [m@ttshwed.com]
*/ */
@ -18,7 +18,7 @@
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
* *
* THIS SOfTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND * THIS SOfTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES Of MERCHANTABILITY AND fITNESS fOR A PARTICULAR PURPOSE ARE * WARRANTIES Of MERCHANTABILITY AND fITNESS fOR A PARTICULAR PURPOSE ARE
@ -29,16 +29,16 @@
* CAUSED AND ON ANY THEORY Of LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * CAUSED AND ON ANY THEORY Of LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT Of THE USE * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT Of THE USE
* Of THIS SOfTWARE, EVEN If ADVISED Of THE POSSIBILITY OF SUCH DAMAGE. * Of THIS SOfTWARE, EVEN If ADVISED Of THE POSSIBILITY OF SUCH DAMAGE.
* *
*/ */
import gostCrypto from './gostCrypto.mjs'; import gostCrypto from './gostCrypto.mjs';
/** /**
* The Coding interface provides string converting methods: Base64, Hex, * The Coding interface provides string converting methods: Base64, Hex,
* Int16, Chars, BER and PEM * Int16, Chars, BER and PEM
* @class GostCoding * @class GostCoding
* *
*/ // <editor-fold defaultstate="collapsed"> */ // <editor-fold defaultstate="collapsed">
var root = {}; var root = {};
var DataError = Error; var DataError = Error;
@ -48,7 +48,7 @@ var Date = Date;
function buffer(d) { function buffer(d) {
if (d instanceof CryptoOperationData) if (d instanceof CryptoOperationData)
return d; return d;
else if (d && d.buffer && d.buffer instanceof CryptoOperationData) else if (d && d?.buffer instanceof CryptoOperationData)
return d.byteOffset === 0 && d.byteLength === d.buffer.byteLength ? return d.byteOffset === 0 && d.byteLength === d.buffer.byteLength ?
d.buffer : new Uint8Array(new Uint8Array(d, d.byteOffset, d.byteLength)).buffer; d.buffer : new Uint8Array(new Uint8Array(d, d.byteOffset, d.byteLength)).buffer;
else else
@ -60,13 +60,13 @@ function GostCoding() {
/** /**
* BASE64 conversion * BASE64 conversion
* *
* @class GostCoding.Base64 * @class GostCoding.Base64
*/ */
var Base64 = {// <editor-fold defaultstate="collapsed"> var Base64 = {// <editor-fold defaultstate="collapsed">
/** /**
* Base64.decode convert BASE64 string s to CryptoOperationData * Base64.decode convert BASE64 string s to CryptoOperationData
* *
* @memberOf GostCoding.Base64 * @memberOf GostCoding.Base64
* @param {String} s BASE64 encoded string value * @param {String} s BASE64 encoded string value
* @returns {CryptoOperationData} Binary decoded data * @returns {CryptoOperationData} Binary decoded data
@ -100,7 +100,7 @@ var Base64 = {// <editor-fold defaultstate="collapsed">
}, },
/** /**
* Base64.encode(data) convert CryptoOperationData data to BASE64 string * Base64.encode(data) convert CryptoOperationData data to BASE64 string
* *
* @memberOf GostCoding.Base64 * @memberOf GostCoding.Base64
* @param {CryptoOperationData} data Bynary data for encoding * @param {CryptoOperationData} data Bynary data for encoding
* @returns {String} BASE64 encoded data * @returns {String} BASE64 encoded data
@ -129,7 +129,7 @@ var Base64 = {// <editor-fold defaultstate="collapsed">
/** /**
* BASE64 conversion * BASE64 conversion
* *
* @memberOf GostCoding * @memberOf GostCoding
* @insnance * @insnance
* @type GostCoding.Base64 * @type GostCoding.Base64
@ -139,7 +139,7 @@ GostCoding.prototype.Base64 = Base64;
/** /**
* Text string conversion <br> * Text string conversion <br>
* Methods support charsets: ascii, win1251, utf8, utf16 (ucs2, unicode), utf32 (ucs4) * Methods support charsets: ascii, win1251, utf8, utf16 (ucs2, unicode), utf32 (ucs4)
* *
* @class GostCoding.Chars * @class GostCoding.Chars
*/ */
var Chars = (function () { // <editor-fold defaultstate="collapsed"> var Chars = (function () { // <editor-fold defaultstate="collapsed">
@ -162,8 +162,8 @@ var Chars = (function () { // <editor-fold defaultstate="collapsed">
return { return {
/** /**
* Chars.decode(s, charset) convert string s with defined charset to CryptoOperationData * Chars.decode(s, charset) convert string s with defined charset to CryptoOperationData
* *
* @memberOf GostCoding.Chars * @memberOf GostCoding.Chars
* @param {string} s Javascript string * @param {string} s Javascript string
* @param {string} charset Charset, default 'win1251' * @param {string} charset Charset, default 'win1251'
@ -236,7 +236,7 @@ var Chars = (function () { // <editor-fold defaultstate="collapsed">
}, },
/** /**
* Chars.encode(data, charset) convert CryptoOperationData data to string with defined charset * Chars.encode(data, charset) convert CryptoOperationData data to string with defined charset
* *
* @memberOf GostCoding.Chars * @memberOf GostCoding.Chars
* @param {CryptoOperationData} data Binary data * @param {CryptoOperationData} data Binary data
* @param {string} charset Charset, default win1251 * @param {string} charset Charset, default win1251
@ -250,15 +250,15 @@ var Chars = (function () { // <editor-fold defaultstate="collapsed">
if (charset === 'utf8') { if (charset === 'utf8') {
c = c >= 0xfc && c < 0xfe && i + 5 < n ? // six bytes c = c >= 0xfc && c < 0xfe && i + 5 < n ? // six bytes
(c - 0xfc) * 1073741824 + (d[++i] - 0x80 << 24) + (d[++i] - 0x80 << 18) + (d[++i] - 0x80 << 12) + (d[++i] - 0x80 << 6) + d[++i] - 0x80 (c - 0xfc) * 1073741824 + (d[++i] - 0x80 << 24) + (d[++i] - 0x80 << 18) + (d[++i] - 0x80 << 12) + (d[++i] - 0x80 << 6) + d[++i] - 0x80
: c >> 0xf8 && c < 0xfc && i + 4 < n ? // five bytes : c >> 0xf8 && c < 0xfc && i + 4 < n ? // five bytes
(c - 0xf8 << 24) + (d[++i] - 0x80 << 18) + (d[++i] - 0x80 << 12) + (d[++i] - 0x80 << 6) + d[++i] - 0x80 (c - 0xf8 << 24) + (d[++i] - 0x80 << 18) + (d[++i] - 0x80 << 12) + (d[++i] - 0x80 << 6) + d[++i] - 0x80
: c >> 0xf0 && c < 0xf8 && i + 3 < n ? // four bytes : c >> 0xf0 && c < 0xf8 && i + 3 < n ? // four bytes
(c - 0xf0 << 18) + (d[++i] - 0x80 << 12) + (d[++i] - 0x80 << 6) + d[++i] - 0x80 (c - 0xf0 << 18) + (d[++i] - 0x80 << 12) + (d[++i] - 0x80 << 6) + d[++i] - 0x80
: c >= 0xe0 && c < 0xf0 && i + 2 < n ? // three bytes : c >= 0xe0 && c < 0xf0 && i + 2 < n ? // three bytes
(c - 0xe0 << 12) + (d[++i] - 0x80 << 6) + d[++i] - 0x80 (c - 0xe0 << 12) + (d[++i] - 0x80 << 6) + d[++i] - 0x80
: c >= 0xc0 && c < 0xe0 && i + 1 < n ? // two bytes : c >= 0xc0 && c < 0xe0 && i + 1 < n ? // two bytes
(c - 0xc0 << 6) + d[++i] - 0x80 (c - 0xc0 << 6) + d[++i] - 0x80
: c; // one byte : c; // one byte
} else if (charset === 'unicode' || charset === 'ucs2' || charset === 'utf16') { } else if (charset === 'unicode' || charset === 'ucs2' || charset === 'utf16') {
c = (c << 8) + d[++i]; c = (c << 8) + d[++i];
if (c >= 0xD800 && c < 0xE000) { if (c >= 0xD800 && c < 0xE000) {
@ -289,7 +289,7 @@ var Chars = (function () { // <editor-fold defaultstate="collapsed">
/** /**
* Text string conversion * Text string conversion
* *
* @memberOf GostCoding * @memberOf GostCoding
* @insnance * @insnance
* @type GostCoding.Chars * @type GostCoding.Chars
@ -298,20 +298,20 @@ GostCoding.prototype.Chars = Chars;
/** /**
* HEX conversion * HEX conversion
* *
* @class GostCoding.Hex * @class GostCoding.Hex
*/ */
var Hex = {// <editor-fold defaultstate="collapsed"> var Hex = {// <editor-fold defaultstate="collapsed">
/** /**
* Hex.decode(s, endean) convert HEX string s to CryptoOperationData in endean mode * Hex.decode(s, endean) convert HEX string s to CryptoOperationData in endean mode
* *
* @memberOf GostCoding.Hex * @memberOf GostCoding.Hex
* @param {string} s Hex encoded string * @param {string} s Hex encoded string
* @param {boolean} endean Little or Big Endean, default Little * @param {boolean} endean Little or Big Endean, default Little
* @returns {CryptoOperationData} Decoded binary data * @returns {CryptoOperationData} Decoded binary data
*/ */
decode: function (s, endean) { decode: function (s, endean) {
s = s.replace(/[^A-fa-f0-9]/g, ''); s = s.replace(/[^A-Fa-f0-9]/g, '');
var n = Math.ceil(s.length / 2), r = new Uint8Array(n); var n = Math.ceil(s.length / 2), r = new Uint8Array(n);
s = (s.length % 2 > 0 ? '0' : '') + s; s = (s.length % 2 > 0 ? '0' : '') + s;
if (endean && ((typeof endean !== 'string') || if (endean && ((typeof endean !== 'string') ||
@ -325,8 +325,8 @@ var Hex = {// <editor-fold defaultstate="collapsed">
}, },
/** /**
* Hex.encode(data, endean) convert CryptoOperationData data to HEX string in endean mode * Hex.encode(data, endean) convert CryptoOperationData data to HEX string in endean mode
* *
* @memberOf GostCoding.Hex * @memberOf GostCoding.Hex
* @param {CryptoOperationData} data Binary data * @param {CryptoOperationData} data Binary data
* @param {boolean} endean Little/Big Endean, default Little * @param {boolean} endean Little/Big Endean, default Little
* @returns {string} Hex decoded string * @returns {string} Hex decoded string
@ -358,19 +358,19 @@ GostCoding.prototype.Hex = Hex;
/** /**
* String hex-encoded integer conversion * String hex-encoded integer conversion
* *
* @class GostCoding.Int16 * @class GostCoding.Int16
*/ */
var Int16 = {// <editor-fold defaultstate="collapsed"> var Int16 = {// <editor-fold defaultstate="collapsed">
/** /**
* Int16.decode(s) convert hex big insteger s to CryptoOperationData * Int16.decode(s) convert hex big insteger s to CryptoOperationData
* *
* @memberOf GostCoding.Int16 * @memberOf GostCoding.Int16
* @param {string} s Int16 string * @param {string} s Int16 string
* @returns {CryptoOperationData} Decoded binary data * @returns {CryptoOperationData} Decoded binary data
*/ */
decode: function (s) { decode: function (s) {
s = (s || '').replace(/[^\-A-fa-f0-9]/g, ''); s = (s || '').replace(/[^\-A-Fa-f0-9]/g, '');
if (s.length === 0) if (s.length === 0)
s = '0'; s = '0';
// Signature // Signature
@ -403,7 +403,7 @@ var Int16 = {// <editor-fold defaultstate="collapsed">
}, },
/** /**
* Int16.encode(data) convert CryptoOperationData data to big integer hex string * Int16.encode(data) convert CryptoOperationData data to big integer hex string
* *
* @memberOf GostCoding.Int16 * @memberOf GostCoding.Int16
* @param {CryptoOperationData} data Binary data * @param {CryptoOperationData} data Binary data
* @returns {string} Int16 encoded string * @returns {string} Int16 encoded string
@ -438,7 +438,7 @@ GostCoding.prototype.Int16 = Int16;
/** /**
* BER, DER, CER conversion * BER, DER, CER conversion
* *
* @class GostCoding.BER * @class GostCoding.BER
*/ */
var BER = (function () { // <editor-fold defaultstate="collapsed"> var BER = (function () { // <editor-fold defaultstate="collapsed">
@ -659,7 +659,7 @@ var BER = (function () { // <editor-fold defaultstate="collapsed">
case 0x1C: // UniversalString case 0x1C: // UniversalString
case 0x1E: // BMPString case 0x1E: // BMPString
k = k || 0; k = k || 0;
// Split content on 1000 octet len parts // Split content on 1000 octet len parts
var size = 1000; var size = 1000;
var bytelen = 0, ba = [], offset = 0; var bytelen = 0, ba = [], offset = 0;
for (var i = k, n = content.length; i < n; i += size - k) { for (var i = k, n = content.length; i < n; i += size - k) {
@ -777,7 +777,7 @@ var BER = (function () { // <editor-fold defaultstate="collapsed">
} while (buf & 0x80); } while (buf & 0x80);
} }
// Read len // Read len
buf = d[pos++]; buf = d[pos++];
len = buf & 0x7f; len = buf & 0x7f;
if (len !== buf) { if (len !== buf) {
@ -979,7 +979,7 @@ var BER = (function () { // <editor-fold defaultstate="collapsed">
throw new DataError('Unrecognized time format "' + s + '" at offset ' + start); throw new DataError('Unrecognized time format "' + s + '" at offset ' + start);
if (shortYear) { if (shortYear) {
// Where YY is greater than or equal to 50, the year SHALL be interpreted as 19YY; and // Where YY is greater than or equal to 50, the year SHALL be interpreted as 19YY; and
// Where YY is less than 50, the year SHALL be interpreted as 20YY // Where YY is less than 50, the year SHALL be interpreted as 20YY
m[1] = +m[1]; m[1] = +m[1];
m[1] += (m[1] < 50) ? 2000 : 1900; m[1] += (m[1] < 50) ? 2000 : 1900;
} }
@ -1031,12 +1031,12 @@ var BER = (function () { // <editor-fold defaultstate="collapsed">
* <li>CryptoOperationData - OCTET STRING</li> * <li>CryptoOperationData - OCTET STRING</li>
* </ul> * </ul>
* SEQUENCE or SET arrays recursively encoded for each item.<br> * SEQUENCE or SET arrays recursively encoded for each item.<br>
* OCTET STRING and BIT STRING can presents as array with one item. * OCTET STRING and BIT STRING can presents as array with one item.
* It means encapsulates encoding for child element.<br> * It means encapsulates encoding for child element.<br>
* *
* If CONTEXT or APPLICATION classes item presents as array with one * If CONTEXT or APPLICATION classes item presents as array with one
* item we use EXPLICIT encoding for element, else IMPLICIT encoding.<br> * item we use EXPLICIT encoding for element, else IMPLICIT encoding.<br>
* *
* @memberOf GostCoding.BER * @memberOf GostCoding.BER
* @param {Object} object Object to encoding * @param {Object} object Object to encoding
* @param {string} format Encoding rule: 'DER' or 'CER', default 'DER' * @param {string} format Encoding rule: 'DER' or 'CER', default 'DER'
@ -1048,7 +1048,7 @@ var BER = (function () { // <editor-fold defaultstate="collapsed">
}, },
/** /**
* BER.encode(data) convert ASN.1 format CryptoOperationData data to javascript object<br><br> * BER.encode(data) convert ASN.1 format CryptoOperationData data to javascript object<br><br>
* *
* Conversion rules to javascript object: * Conversion rules to javascript object:
* <ul> * <ul>
* <li>BOOLEAN - Boolean object</li> * <li>BOOLEAN - Boolean object</li>
@ -1057,7 +1057,7 @@ var BER = (function () { // <editor-fold defaultstate="collapsed">
* <li>OCTET STRING - Hex encoded string or Array with one item in case of incapsulates encoding</li> * <li>OCTET STRING - Hex encoded string or Array with one item in case of incapsulates encoding</li>
* <li>OBJECT IDENTIFIER - String with object identifier</li> * <li>OBJECT IDENTIFIER - String with object identifier</li>
* <li>SEQUENCE, SET - Array of encoded items</li> * <li>SEQUENCE, SET - Array of encoded items</li>
* <li>UTF8String, NumericString, PrintableString, TeletexString, VideotexString, * <li>UTF8String, NumericString, PrintableString, TeletexString, VideotexString,
* IA5String, GraphicString, VisibleString, GeneralString, UniversalString, * IA5String, GraphicString, VisibleString, GeneralString, UniversalString,
* BMPString - encoded String</li> * BMPString - encoded String</li>
* <li>UTCTime, GeneralizedTime - Date</li> * <li>UTCTime, GeneralizedTime - Date</li>
@ -1087,7 +1087,7 @@ GostCoding.prototype.BER = BER;
var PEM = {// <editor-fold defaultstate="collapsed"> var PEM = {// <editor-fold defaultstate="collapsed">
/** /**
* PEM.encode(data, name) encode CryptoOperationData to PEM format with name label * PEM.encode(data, name) encode CryptoOperationData to PEM format with name label
* *
* @memberOf GostCoding.PEM * @memberOf GostCoding.PEM
* @param {(Object|CryptoOperationData)} data Java script object or BER-encoded binary data * @param {(Object|CryptoOperationData)} data Java script object or BER-encoded binary data
* @param {string} name Name of PEM object: 'certificate', 'private key' etc. * @param {string} name Name of PEM object: 'certificate', 'private key' etc.
@ -1100,7 +1100,7 @@ var PEM = {// <editor-fold defaultstate="collapsed">
}, },
/** /**
* PEM.decode(s, name, deep) decode PEM format s labeled name to CryptoOperationData or javascript object in according to deep parameter * PEM.decode(s, name, deep) decode PEM format s labeled name to CryptoOperationData or javascript object in according to deep parameter
* *
* @memberOf GostCoding.PEM * @memberOf GostCoding.PEM
* @param {string} s PEM encoded string * @param {string} s PEM encoded string
* @param {string} name Name of PEM object: 'certificate', 'private key' etc. * @param {string} name Name of PEM object: 'certificate', 'private key' etc.
@ -1151,10 +1151,10 @@ GostCoding.prototype.PEM = PEM;
if (gostCrypto) if (gostCrypto)
/** /**
* Coding algorithms: Base64, Hex, Int16, Chars, BER and PEM * Coding algorithms: Base64, Hex, Int16, Chars, BER and PEM
* *
* @memberOf gostCrypto * @memberOf gostCrypto
* @type GostCoding * @type GostCoding
*/ */
gostCrypto.coding = new GostCoding(); gostCrypto.coding = new GostCoding();
export default GostCoding; export default GostCoding;

View file

@ -2,11 +2,11 @@
* Implementation Web Crypto interfaces for GOST algorithms * Implementation Web Crypto interfaces for GOST algorithms
* 1.76 * 1.76
* 2014-2016, Rudolf Nickolaev. All rights reserved. * 2014-2016, Rudolf Nickolaev. All rights reserved.
* *
* Exported for CyberChef by mshwed [m@ttshwed.com] * Exported for CyberChef by mshwed [m@ttshwed.com]
*/ */
/* /*
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
* You may obtain a copy of the License at * You may obtain a copy of the License at
@ -18,7 +18,7 @@
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
* *
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
@ -29,7 +29,7 @@
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
* *
*/ */
import GostRandom from './gostRandom.mjs'; import GostRandom from './gostRandom.mjs';
@ -39,7 +39,7 @@ import crypto from 'crypto'
/* /*
* Algorithm normalization * Algorithm normalization
* *
*/ // <editor-fold defaultstate="collapsed"> */ // <editor-fold defaultstate="collapsed">
var root = {}; var root = {};
@ -233,7 +233,7 @@ function normalize(algorithm, method) {
break; break;
} }
// Encrypt additional modes // Encrypt additional modes
if (na.mode === 'ES') { if (na.mode === 'ES') {
if (algorithm.block) if (algorithm.block)
na.block = algorithm.block; // ECB, CFB, OFB, CTR, CBC na.block = algorithm.block; // ECB, CFB, OFB, CTR, CBC
@ -383,7 +383,7 @@ function checkNative(algorithm) {
/* /*
* Key conversion methods * Key conversion methods
* *
*/ // <editor-fold defaultstate="collapsed"> */ // <editor-fold defaultstate="collapsed">
// Check key parameter // Check key parameter
@ -522,7 +522,7 @@ function swapBytes(src) {
/** /**
* Promise stub object (not fulfill specification, only for internal use) * Promise stub object (not fulfill specification, only for internal use)
* Class not defined if Promise class already defined in root context<br><br> * Class not defined if Promise class already defined in root context<br><br>
* *
* The Promise object is used for deferred and asynchronous computations. A Promise is in one of the three states: * The Promise object is used for deferred and asynchronous computations. A Promise is in one of the three states:
* <ul> * <ul>
* <li>pending: initial state, not fulfilled or rejected.</li> * <li>pending: initial state, not fulfilled or rejected.</li>
@ -532,8 +532,8 @@ function swapBytes(src) {
* Another term describing the state is settled: the Promise is either fulfilled or rejected, but not pending.<br><br> * Another term describing the state is settled: the Promise is either fulfilled or rejected, but not pending.<br><br>
* @class Promise * @class Promise
* @global * @global
* @param {function} executor Function object with two arguments resolve and reject. * @param {function} executor Function object with two arguments resolve and reject.
* The first argument fulfills the promise, the second argument rejects it. * The first argument fulfills the promise, the second argument rejects it.
* We can call these functions, once our operation is completed. * We can call these functions, once our operation is completed.
*/ // <editor-fold defaultstate="collapsed"> */ // <editor-fold defaultstate="collapsed">
if (!Promise) { if (!Promise) {
@ -588,15 +588,15 @@ if (!Promise) {
} }
} }
/** /**
* The then() method returns a Promise. It takes two arguments, both are * The then() method returns a Promise. It takes two arguments, both are
* callback functions for the success and failure cases of the Promise. * callback functions for the success and failure cases of the Promise.
* *
* @method then * @method then
* @memberOf Promise * @memberOf Promise
* @instance * @instance
* @param {function} onFulfilled A Function called when the Promise is fulfilled. This function has one argument, the fulfillment value. * @param {function} onFulfilled A Function called when the Promise is fulfilled. This function has one argument, the fulfillment value.
* @param {function} onRejected A Function called when the Promise is rejected. This function has one argument, the rejection reason. * @param {function} onRejected A Function called when the Promise is rejected. This function has one argument, the rejection reason.
* @returns {Promise} * @returns {Promise}
*/ */
this.then = function (onFulfilled, onRejected) { this.then = function (onFulfilled, onRejected) {
@ -611,7 +611,7 @@ if (!Promise) {
return; return;
} }
value = mswrap(value); value = mswrap(value);
if (value && value.then && value.then.call) { if (value && value?.then?.call) {
value.then(resolve, reject); value.then(resolve, reject);
} else { } else {
resolve(value); resolve(value);
@ -627,7 +627,7 @@ if (!Promise) {
return; return;
} }
reason = mswrap(reason); reason = mswrap(reason);
if (reason && reason.then && reason.then.call) { if (reason && reason?.then?.call) {
reason.then(resolve, reject); reason.then(resolve, reject);
} else { } else {
reject(reason); reject(reason);
@ -647,14 +647,14 @@ if (!Promise) {
}; };
/** /**
* The catch() method returns a Promise and deals with rejected cases only. * The catch() method returns a Promise and deals with rejected cases only.
* It behaves the same as calling Promise.prototype.then(undefined, onRejected). * It behaves the same as calling Promise.prototype.then(undefined, onRejected).
* *
* @method catch * @method catch
* @memberOf Promise * @memberOf Promise
* @instance * @instance
* @param {function} onRejected A Function called when the Promise is rejected. This function has one argument, the rejection reason. * @param {function} onRejected A Function called when the Promise is rejected. This function has one argument, the rejection reason.
* @returns {Promise} * @returns {Promise}
*/ */
this['catch'] = function (onRejected) { this['catch'] = function (onRejected) {
return this.then(undefined, onRejected); return this.then(undefined, onRejected);
@ -662,15 +662,15 @@ if (!Promise) {
} }
/** /**
* The Promise.all(iterable) method returns a promise that resolves when all * The Promise.all(iterable) method returns a promise that resolves when all
* of the promises in the iterable argument have resolved.<br><br> * of the promises in the iterable argument have resolved.<br><br>
* *
* The result is passed as an array of values from all the promises. * The result is passed as an array of values from all the promises.
* If something passed in the iterable array is not a promise, it's converted to * If something passed in the iterable array is not a promise, it's converted to
* one by Promise.resolve. If any of the passed in promises rejects, the * one by Promise.resolve. If any of the passed in promises rejects, the
* all Promise immediately rejects with the value of the promise that rejected, * all Promise immediately rejects with the value of the promise that rejected,
* discarding all the other promises whether or not they have resolved. * discarding all the other promises whether or not they have resolved.
* *
* @method all * @method all
* @memberOf Promise * @memberOf Promise
* @static * @static
@ -698,7 +698,7 @@ if (!Promise) {
for (var i = 0, n = promises.length; i < n; i++) { for (var i = 0, n = promises.length; i < n; i++) {
var data = promises[i]; var data = promises[i];
if (data.then && data.then.call) if (data?.then?.call)
data.then(asyncResolve(i), asyncReject); data.then(asyncResolve(i), asyncReject);
else else
result[i] = data; result[i] = data;
@ -715,7 +715,7 @@ if (!Promise) {
/* /*
* Worker executor * Worker executor
* *
*/ // <editor-fold defaultstate="collapsed"> */ // <editor-fold defaultstate="collapsed">
var baseUrl = '', nameSuffix = ''; var baseUrl = '', nameSuffix = '';
@ -797,7 +797,7 @@ if (!root.importScripts) {
if (!worker) { if (!worker) {
// Import main module // Import main module
// Reason: we are already in worker process or Worker interface is not // Reason: we are already in worker process or Worker interface is not
// yet supported // yet supported
root.gostEngine || require('./gostEngine'); root.gostEngine || require('./gostEngine');
} }
@ -841,11 +841,11 @@ function call(callback) {
/* /*
* WebCrypto common class references * WebCrypto common class references
* *
*/ // <editor-fold defaultstate="collapsed"> */ // <editor-fold defaultstate="collapsed">
/** /**
* The Algorithm object is a dictionary object [WebIDL] which is used to * The Algorithm object is a dictionary object [WebIDL] which is used to
* specify an algorithm and any additional parameters required to fully * specify an algorithm and any additional parameters required to fully
* specify the desired operation.<br> * specify the desired operation.<br>
* <pre> * <pre>
* dictionary Algorithm { * dictionary Algorithm {
@ -867,7 +867,7 @@ function call(callback) {
*/ */
/** /**
* The KeyAlgorithm interface represents information about the contents of a * The KeyAlgorithm interface represents information about the contents of a
* given Key object. * given Key object.
* <pre> * <pre>
* interface KeyAlgorithm { * interface KeyAlgorithm {
@ -875,14 +875,14 @@ function call(callback) {
* }; * };
* </pre> * </pre>
* WebCrypto API reference {@link http://www.w3.org/TR/WebCryptoAPI/#key-algorithm-interface} * WebCrypto API reference {@link http://www.w3.org/TR/WebCryptoAPI/#key-algorithm-interface}
* @class KeyAlgorithm * @class KeyAlgorithm
* @param {DOMString} name The name of the algorithm used to generate the Key * @param {DOMString} name The name of the algorithm used to generate the Key
*/ */
/** /**
* The type of a key. The recognized key type values are "public", "private" * The type of a key. The recognized key type values are "public", "private"
* and "secret". Opaque keying material, including that used for symmetric * and "secret". Opaque keying material, including that used for symmetric
* algorithms, is represented by "secret", while keys used as part of asymmetric * algorithms, is represented by "secret", while keys used as part of asymmetric
* algorithms composed of public/private keypairs will be either "public" or "private". * algorithms composed of public/private keypairs will be either "public" or "private".
* <pre> * <pre>
* typedef DOMString KeyType; * typedef DOMString KeyType;
@ -892,8 +892,8 @@ function call(callback) {
*/ */
/** /**
* Sequence of operation type that may be performed using a key. The recognized * Sequence of operation type that may be performed using a key. The recognized
* key usage values are "encrypt", "decrypt", "sign", "verify", "deriveKey", * key usage values are "encrypt", "decrypt", "sign", "verify", "deriveKey",
* "deriveBits", "wrapKey" and "unwrapKey". * "deriveBits", "wrapKey" and "unwrapKey".
* <pre> * <pre>
* typedef DOMString[] KeyUsages; * typedef DOMString[] KeyUsages;
@ -903,19 +903,19 @@ function call(callback) {
*/ */
/** /**
* The Key object represents an opaque reference to keying material that is * The Key object represents an opaque reference to keying material that is
* managed by the user agent.<br> * managed by the user agent.<br>
* This specification provides a uniform interface for many different kinds of * This specification provides a uniform interface for many different kinds of
* keying material managed by the user agent. This may include keys that have * keying material managed by the user agent. This may include keys that have
* been generated by the user agent, derived from other keys by the user agent, * been generated by the user agent, derived from other keys by the user agent,
* imported to the user agent through user actions or using this API, * imported to the user agent through user actions or using this API,
* pre-provisioned within software or hardware to which the user agent has * pre-provisioned within software or hardware to which the user agent has
* access or made available to the user agent in other ways. The term key refers * access or made available to the user agent in other ways. The term key refers
* broadly to any keying material including actual keys for cryptographic * broadly to any keying material including actual keys for cryptographic
* operations and secret values obtained within key derivation or exchange operations.<br> * operations and secret values obtained within key derivation or exchange operations.<br>
* The Key object is not required to directly interface with the underlying key * The Key object is not required to directly interface with the underlying key
* storage mechanism, and may instead simply be a reference for the user agent * storage mechanism, and may instead simply be a reference for the user agent
* to understand how to obtain the keying material when needed, eg. when performing * to understand how to obtain the keying material when needed, eg. when performing
* a cryptographic operation. * a cryptographic operation.
* <pre> * <pre>
* interface Key { * interface Key {
@ -923,14 +923,14 @@ function call(callback) {
* readonly attribute boolean extractable; * readonly attribute boolean extractable;
* readonly attribute KeyAlgorithm algorithm; * readonly attribute KeyAlgorithm algorithm;
* readonly attribute KeyUsages usages; * readonly attribute KeyUsages usages;
* }; * };
* </pre> * </pre>
* WebCrypto API reference {@link http://www.w3.org/TR/WebCryptoAPI/#key-interface} * WebCrypto API reference {@link http://www.w3.org/TR/WebCryptoAPI/#key-interface}
* @class Key * @class Key
* @param {KeyType} type The type of a key. The recognized key type values are "public", "private" and "secret". * @param {KeyType} type The type of a key. The recognized key type values are "public", "private" and "secret".
* @param {boolean} extractable Whether or not the raw keying material may be exported by the application. * @param {boolean} extractable Whether or not the raw keying material may be exported by the application.
* @param {KeyAlgorithm} algorithm The Algorithm used to generate the key. * @param {KeyAlgorithm} algorithm The Algorithm used to generate the key.
* @param {KeyUsages} usages Key usage array: type of operation that may be performed using a key. * @param {KeyUsages} usages Key usage array: type of operation that may be performed using a key.
*/ */
/** /**
@ -939,7 +939,7 @@ function call(callback) {
* interface KeyPair { * interface KeyPair {
* readonly attribute Key publicKey; * readonly attribute Key publicKey;
* readonly attribute Key privateKey; * readonly attribute Key privateKey;
* }; * };
* </pre> * </pre>
* WebCrypto API reference {@link http://www.w3.org/TR/WebCryptoAPI/#keypair} * WebCrypto API reference {@link http://www.w3.org/TR/WebCryptoAPI/#keypair}
* @class KeyPair * @class KeyPair
@ -963,7 +963,7 @@ function call(callback) {
*/ */
/** /**
* Binary data * Binary data
* <pre> * <pre>
* typedef (ArrayBuffer or ArrayBufferView) CryptoOperationData; * typedef (ArrayBuffer or ArrayBufferView) CryptoOperationData;
* </pre> * </pre>
@ -982,9 +982,9 @@ var CryptoOperationData = ArrayBuffer;
/** /**
* The gostCrypto provide general purpose cryptographic functionality for * The gostCrypto provide general purpose cryptographic functionality for
* GOST standards including a cryptographically strong pseudo-random number * GOST standards including a cryptographically strong pseudo-random number
* generator seeded with truly random values. * generator seeded with truly random values.
* *
* @namespace gostCrypto * @namespace gostCrypto
*/ */
var gostCrypto = {}; var gostCrypto = {};
@ -992,17 +992,17 @@ var gostCrypto = {};
/** /**
* The SubtleCrypto class provides low-level cryptographic primitives and algorithms. * The SubtleCrypto class provides low-level cryptographic primitives and algorithms.
* WebCrypto API reference {@link http://www.w3.org/TR/WebCryptoAPI/#subtlecrypto-interface} * WebCrypto API reference {@link http://www.w3.org/TR/WebCryptoAPI/#subtlecrypto-interface}
* *
* @class SubtleCrypto * @class SubtleCrypto
*/ // <editor-fold> */ // <editor-fold>
function SubtleCrypto() { function SubtleCrypto() {
} }
/** /**
* The encrypt method returns a new Promise object that will encrypt data * The encrypt method returns a new Promise object that will encrypt data
* using the specified algorithm identifier with the supplied Key. * using the specified algorithm identifier with the supplied Key.
* WebCrypto API reference {@link http://www.w3.org/TR/WebCryptoAPI/#SubtleCrypto-method-encrypt}<br><br> * WebCrypto API reference {@link http://www.w3.org/TR/WebCryptoAPI/#SubtleCrypto-method-encrypt}<br><br>
* *
* Supported algorithm names: * Supported algorithm names:
* <ul> * <ul>
* <li><b>GOST 28147-ECB</b> "prostaya zamena" (ECB) mode (default)</li> * <li><b>GOST 28147-ECB</b> "prostaya zamena" (ECB) mode (default)</li>
@ -1016,8 +1016,8 @@ function SubtleCrypto() {
* <li><b>GOST R 34.12-CTR</b> "gammirovanie" (counter) mode</li> * <li><b>GOST R 34.12-CTR</b> "gammirovanie" (counter) mode</li>
* <li><b>GOST R 34.12-CBC</b> Cipher-Block-Chaining (CBC) mode</li> * <li><b>GOST R 34.12-CBC</b> Cipher-Block-Chaining (CBC) mode</li>
* </ul> * </ul>
* For more information see {@link GostCipher} * For more information see {@link GostCipher}
* *
* @memberOf SubtleCrypto * @memberOf SubtleCrypto
* @method encrypt * @method encrypt
* @instance * @instance
@ -1039,10 +1039,10 @@ SubtleCrypto.prototype.encrypt = function (algorithm, key, data) // <editor-fold
}; // </editor-fold> }; // </editor-fold>
/** /**
* The decrypt method returns a new Promise object that will decrypt data * The decrypt method returns a new Promise object that will decrypt data
* using the specified algorithm identifier with the supplied Key. * using the specified algorithm identifier with the supplied Key.
* WebCrypto API reference {@link http://www.w3.org/TR/WebCryptoAPI/#SubtleCrypto-method-decrypt}<br><br> * WebCrypto API reference {@link http://www.w3.org/TR/WebCryptoAPI/#SubtleCrypto-method-decrypt}<br><br>
* *
* Supported algorithm names: * Supported algorithm names:
* <ul> * <ul>
* <li><b>GOST 28147-ECB</b> "prostaya zamena" (ECB) mode (default)</li> * <li><b>GOST 28147-ECB</b> "prostaya zamena" (ECB) mode (default)</li>
@ -1056,8 +1056,8 @@ SubtleCrypto.prototype.encrypt = function (algorithm, key, data) // <editor-fold
* <li><b>GOST R 34.12-CTR</b> "gammirovanie" (counter) mode</li> * <li><b>GOST R 34.12-CTR</b> "gammirovanie" (counter) mode</li>
* <li><b>GOST R 34.12-CBC</b> Cipher-Block-Chaining (CBC) mode</li> * <li><b>GOST R 34.12-CBC</b> Cipher-Block-Chaining (CBC) mode</li>
* </ul> * </ul>
* For additional modes see {@link GostCipher} * For additional modes see {@link GostCipher}
* *
* @memberOf SubtleCrypto * @memberOf SubtleCrypto
* @method decrypt * @method decrypt
* @instance * @instance
@ -1079,10 +1079,10 @@ SubtleCrypto.prototype.decrypt = function (algorithm, key, data) // <editor-fold
}; // </editor-fold> }; // </editor-fold>
/** /**
* The sign method returns a new Promise object that will sign data using * The sign method returns a new Promise object that will sign data using
* the specified algorithm identifier with the supplied Key. * the specified algorithm identifier with the supplied Key.
* WebCrypto API reference {@link http://www.w3.org/TR/WebCryptoAPI/#SubtleCrypto-method-sign}<br><br> * WebCrypto API reference {@link http://www.w3.org/TR/WebCryptoAPI/#SubtleCrypto-method-sign}<br><br>
* *
* Supported algorithm names: * Supported algorithm names:
* <ul> * <ul>
* <li><b>GOST R 34.10-94</b> GOST Signature</li> * <li><b>GOST R 34.10-94</b> GOST Signature</li>
@ -1096,12 +1096,12 @@ SubtleCrypto.prototype.decrypt = function (algorithm, key, data) // <editor-fold
* <li><b>SHA-HMAC</b> HMAC base on SHA</li> * <li><b>SHA-HMAC</b> HMAC base on SHA</li>
* </ul> * </ul>
* For additional modes see {@link GostSign}, {@link GostDigest} and {@link GostCipher} * For additional modes see {@link GostSign}, {@link GostDigest} and {@link GostCipher}
* *
* @memberOf SubtleCrypto * @memberOf SubtleCrypto
* @method sign * @method sign
* @instance * @instance
* @param {AlgorithmIdentifier} algorithm Algorithm identifier * @param {AlgorithmIdentifier} algorithm Algorithm identifier
* @param {Key} key Key object * @param {Key} key Key object
* @param {CryptoOperationData} data Operation data * @param {CryptoOperationData} data Operation data
* @returns {Promise} Promise that resolves with {@link CryptoOperationData} * @returns {Promise} Promise that resolves with {@link CryptoOperationData}
*/ */
@ -1124,10 +1124,10 @@ SubtleCrypto.prototype.sign = function (algorithm, key, data) // <editor-fold de
}; // </editor-fold> }; // </editor-fold>
/** /**
* The verify method returns a new Promise object that will verify data * The verify method returns a new Promise object that will verify data
* using the specified algorithm identifier with the supplied Key. * using the specified algorithm identifier with the supplied Key.
* WebCrypto API reference {@link http://www.w3.org/TR/WebCryptoAPI/#SubtleCrypto-method-verify}<br><br> * WebCrypto API reference {@link http://www.w3.org/TR/WebCryptoAPI/#SubtleCrypto-method-verify}<br><br>
* *
* Supported algorithm names: * Supported algorithm names:
* <ul> * <ul>
* <li><b>GOST R 34.10-94</b> GOST Signature</li> * <li><b>GOST R 34.10-94</b> GOST Signature</li>
@ -1141,7 +1141,7 @@ SubtleCrypto.prototype.sign = function (algorithm, key, data) // <editor-fold de
* <li><b>SHA-HMAC</b> HMAC base on SHA</li> * <li><b>SHA-HMAC</b> HMAC base on SHA</li>
* </ul> * </ul>
* For additional modes see {@link GostSign}, {@link GostDigest} and {@link GostCipher} * For additional modes see {@link GostSign}, {@link GostDigest} and {@link GostCipher}
* *
* @memberOf SubtleCrypto * @memberOf SubtleCrypto
* @method verify * @method verify
* @instance * @instance
@ -1168,10 +1168,10 @@ SubtleCrypto.prototype.verify = function (algorithm, key, signature, data) // <e
}; // </editor-fold> }; // </editor-fold>
/** /**
* The digest method returns a new Promise object that will digest data * The digest method returns a new Promise object that will digest data
* using the specified algorithm identifier. * using the specified algorithm identifier.
* WebCrypto API reference {@link http://www.w3.org/TR/WebCryptoAPI/#SubtleCrypto-method-digest}<br><br> * WebCrypto API reference {@link http://www.w3.org/TR/WebCryptoAPI/#SubtleCrypto-method-digest}<br><br>
* *
* Supported algorithm names: * Supported algorithm names:
* <ul> * <ul>
* <li><b>GOST R 34.11-94</b> Old-Style GOST Hash</li> * <li><b>GOST R 34.11-94</b> Old-Style GOST Hash</li>
@ -1179,7 +1179,7 @@ SubtleCrypto.prototype.verify = function (algorithm, key, signature, data) // <e
* <li><b>SHA</b> SHA Hash</li> * <li><b>SHA</b> SHA Hash</li>
* </ul> * </ul>
* For additional modes see {@link GostDigest} * For additional modes see {@link GostDigest}
* *
* @memberOf SubtleCrypto * @memberOf SubtleCrypto
* @method digest * @method digest
* @instance * @instance
@ -1201,10 +1201,10 @@ SubtleCrypto.prototype.digest = function (algorithm, data) // <editor-fold defau
/** /**
* The generateKey method returns a new Promise object that will key(s) using * The generateKey method returns a new Promise object that will key(s) using
* the specified algorithm identifier. Key can be used in according with * the specified algorithm identifier. Key can be used in according with
* KeyUsages sequence. The recognized key usage values are "encrypt", "decrypt", * KeyUsages sequence. The recognized key usage values are "encrypt", "decrypt",
* "sign", "verify", "deriveKey", "deriveBits", "wrapKey" and "unwrapKey". * "sign", "verify", "deriveKey", "deriveBits", "wrapKey" and "unwrapKey".
* WebCrypto API reference {@link http://www.w3.org/TR/WebCryptoAPI/#SubtleCrypto-method-generateKey}<br><br> * WebCrypto API reference {@link http://www.w3.org/TR/WebCryptoAPI/#SubtleCrypto-method-generateKey}<br><br>
* *
* Supported algorithm names: * Supported algorithm names:
* <ul> * <ul>
* <li><b>GOST R 34.10</b> ECGOST Key Pairs</li> * <li><b>GOST R 34.10</b> ECGOST Key Pairs</li>
@ -1216,7 +1216,7 @@ SubtleCrypto.prototype.digest = function (algorithm, data) // <editor-fold defau
* </ul> * </ul>
* For additional modes see {@link GostSign}, {@link GostDigest} and {@link GostCipher}<br> * For additional modes see {@link GostSign}, {@link GostDigest} and {@link GostCipher}<br>
* Note: Generation key for GOST R 34.10-94 not supported. * Note: Generation key for GOST R 34.10-94 not supported.
* *
* @memberOf SubtleCrypto * @memberOf SubtleCrypto
* @method generateKey * @method generateKey
* @instance * @instance
@ -1254,10 +1254,10 @@ SubtleCrypto.prototype.generateKey = function (algorithm, extractable, keyUsages
/** /**
* The deriveKey method returns a new Promise object that will key(s) using * The deriveKey method returns a new Promise object that will key(s) using
* the specified algorithm identifier. Key can be used in according with * the specified algorithm identifier. Key can be used in according with
* KeyUsage sequence. The recognized key usage values are "encrypt", "decrypt", * KeyUsage sequence. The recognized key usage values are "encrypt", "decrypt",
* "sign", "verify", "deriveKey", "deriveBits", "wrapKey" and "unwrapKey". * "sign", "verify", "deriveKey", "deriveBits", "wrapKey" and "unwrapKey".
* WebCrypto API reference {@link http://www.w3.org/TR/WebCryptoAPI/#SubtleCrypto-method-deriveKey}<br><br> * WebCrypto API reference {@link http://www.w3.org/TR/WebCryptoAPI/#SubtleCrypto-method-deriveKey}<br><br>
* *
* Supported algorithm names: * Supported algorithm names:
* <ul> * <ul>
* <li><b>GOST R 34.10-DH</b> ECDH Key Agreement mode</li> * <li><b>GOST R 34.10-DH</b> ECDH Key Agreement mode</li>
@ -1269,7 +1269,7 @@ SubtleCrypto.prototype.generateKey = function (algorithm, extractable, keyUsages
* <li><b>SHA-PFXKDF</b> PFX Key for Derivation Algorithm</li> * <li><b>SHA-PFXKDF</b> PFX Key for Derivation Algorithm</li>
* </ul> * </ul>
* For additional modes see {@link GostSign} and {@link GostDigest} * For additional modes see {@link GostSign} and {@link GostDigest}
* *
* @memberOf SubtleCrypto * @memberOf SubtleCrypto
* @method deriveKey * @method deriveKey
* @instance * @instance
@ -1277,7 +1277,7 @@ SubtleCrypto.prototype.generateKey = function (algorithm, extractable, keyUsages
* @param {Key} baseKey Derivation key object * @param {Key} baseKey Derivation key object
* @param {AlgorithmIdentifier} derivedKeyType Derived key algorithm identifier * @param {AlgorithmIdentifier} derivedKeyType Derived key algorithm identifier
* @param {boolean} extractable Whether or not the raw keying material may be exported by the application * @param {boolean} extractable Whether or not the raw keying material may be exported by the application
* @param {KeyUsages} keyUsages Key usage array: type of operation that may be performed using a key * @param {KeyUsages} keyUsages Key usage array: type of operation that may be performed using a key
* @returns {Promise} Promise that resolves with {@link Key} * @returns {Promise} Promise that resolves with {@link Key}
*/ */
SubtleCrypto.prototype.deriveKey = function (algorithm, baseKey, SubtleCrypto.prototype.deriveKey = function (algorithm, baseKey,
@ -1302,10 +1302,10 @@ SubtleCrypto.prototype.deriveKey = function (algorithm, baseKey,
}; // </editor-fold> }; // </editor-fold>
/** /**
* The deriveBits method returns length bits on baseKey using the * The deriveBits method returns length bits on baseKey using the
* specified algorithm identifier. * specified algorithm identifier.
* WebCrypto API reference {@link http://www.w3.org/TR/WebCryptoAPI/#SubtleCrypto-method-deriveBits}<br><br> * WebCrypto API reference {@link http://www.w3.org/TR/WebCryptoAPI/#SubtleCrypto-method-deriveBits}<br><br>
* *
* Supported algorithm names: * Supported algorithm names:
* <ul> * <ul>
* <li><b>GOST R 34.10-DH</b> ECDH Key Agreement mode</li> * <li><b>GOST R 34.10-DH</b> ECDH Key Agreement mode</li>
@ -1317,7 +1317,7 @@ SubtleCrypto.prototype.deriveKey = function (algorithm, baseKey,
* <li><b>SHA-PFXKDF</b> PFX Key for Derivation Algorithm</li> * <li><b>SHA-PFXKDF</b> PFX Key for Derivation Algorithm</li>
* </ul> * </ul>
* For additional modes see {@link GostSign} and {@link GostDigest} * For additional modes see {@link GostSign} and {@link GostDigest}
* *
* @memberOf SubtleCrypto * @memberOf SubtleCrypto
* @method deriveBits * @method deriveBits
* @instance * @instance
@ -1342,7 +1342,7 @@ SubtleCrypto.prototype.deriveBits = function (algorithm, baseKey, length) // <ed
/** /**
* The importKey method returns a new Promise object that will key(s) using * The importKey method returns a new Promise object that will key(s) using
* the specified algorithm identifier. Key can be used in according with * the specified algorithm identifier. Key can be used in according with
* KeyUsage sequence. The recognized key usage values are "encrypt", "decrypt", * KeyUsage sequence. The recognized key usage values are "encrypt", "decrypt",
* "sign", "verify", "deriveKey", "deriveBits", "wrapKey" and "unwrapKey".<br><br> * "sign", "verify", "deriveKey", "deriveBits", "wrapKey" and "unwrapKey".<br><br>
* Parameter keyData contains data in defined format. * Parameter keyData contains data in defined format.
* The suppored key format values are: * The suppored key format values are:
@ -1352,7 +1352,7 @@ SubtleCrypto.prototype.deriveBits = function (algorithm, baseKey, length) // <ed
* <li>'spki' - The DER encoding of the SubjectPublicKeyInfo structure from RFC 5280.</li> * <li>'spki' - The DER encoding of the SubjectPublicKeyInfo structure from RFC 5280.</li>
* </ul> * </ul>
* WebCrypto API reference {@link http://www.w3.org/TR/WebCryptoAPI/#SubtleCrypto-method-importKey}<br><br> * WebCrypto API reference {@link http://www.w3.org/TR/WebCryptoAPI/#SubtleCrypto-method-importKey}<br><br>
* *
* Supported algorithm names: * Supported algorithm names:
* <ul> * <ul>
* <li><b>GOST R 34.10-94</b> GOST Private and Public keys</li> * <li><b>GOST R 34.10-94</b> GOST Private and Public keys</li>
@ -1364,7 +1364,7 @@ SubtleCrypto.prototype.deriveBits = function (algorithm, baseKey, length) // <ed
* <li><b>GOST R 34.11-KDF</b> Key for Derivation Algorithm</li> * <li><b>GOST R 34.11-KDF</b> Key for Derivation Algorithm</li>
* </ul> * </ul>
* For additional modes see {@link GostSign}, {@link GostDigest} and {@link GostCipher}<br> * For additional modes see {@link GostSign}, {@link GostDigest} and {@link GostCipher}<br>
* *
* @memberOf SubtleCrypto * @memberOf SubtleCrypto
* @method importKey * @method importKey
* @instance * @instance
@ -1455,7 +1455,7 @@ SubtleCrypto.prototype.importKey = function (format, keyData, algorithm, extract
* <li>'spki' - The DER encoding of the SubjectPublicKeyInfo structure from RFC 5280.</li> * <li>'spki' - The DER encoding of the SubjectPublicKeyInfo structure from RFC 5280.</li>
* </ul> * </ul>
* WebCrypto API reference {@link http://www.w3.org/TR/WebCryptoAPI/#SubtleCrypto-method-exportKey}<br><br> * WebCrypto API reference {@link http://www.w3.org/TR/WebCryptoAPI/#SubtleCrypto-method-exportKey}<br><br>
* *
* Supported algorithm names: * Supported algorithm names:
* <ul> * <ul>
* <li><b>GOST R 34.10-94</b> GOST Private and Public keys</li> * <li><b>GOST R 34.10-94</b> GOST Private and Public keys</li>
@ -1472,7 +1472,7 @@ SubtleCrypto.prototype.importKey = function (format, keyData, algorithm, extract
* <li><b>SHA-PFXKDF</b> Import PFX Key for Derivation Algorithm</li> * <li><b>SHA-PFXKDF</b> Import PFX Key for Derivation Algorithm</li>
* </ul> * </ul>
* For additional modes see {@link GostSign}, {@link GostDigest} and {@link GostCipher}<br> * For additional modes see {@link GostSign}, {@link GostDigest} and {@link GostCipher}<br>
* *
* @memberOf SubtleCrypto * @memberOf SubtleCrypto
* @method exportKey * @method exportKey
* @instance * @instance
@ -1492,7 +1492,7 @@ SubtleCrypto.prototype.exportKey = function (format, key) // <editor-fold defaul
var raw = extractKey(null, null, key); var raw = extractKey(null, null, key);
if (format === 'raw') if (format === 'raw')
return raw; return raw;
else if (format === 'pkcs8' && key.algorithm && key.algorithm.id) { else if (format === 'pkcs8' && key?.algorithm?.id) {
if (key.algorithm.procreator === 'VN') { if (key.algorithm.procreator === 'VN') {
// Add masks for ViPNet // Add masks for ViPNet
var algorithm = key.algorithm, mask; var algorithm = key.algorithm, mask;
@ -1514,7 +1514,7 @@ SubtleCrypto.prototype.exportKey = function (format, key) // <editor-fold defaul
}); });
} else } else
return gostCrypto.asn1.GostPrivateKeyInfo.encode(key); return gostCrypto.asn1.GostPrivateKeyInfo.encode(key);
} else if (format === 'spki' && key.algorithm && key.algorithm.id) } else if (format === 'spki' && key?.algorithm?.id)
return gostCrypto.asn1.GostSubjectPublicKeyInfo.encode(key); return gostCrypto.asn1.GostSubjectPublicKeyInfo.encode(key);
else else
throw new NotSupportedError('Key format not supported'); throw new NotSupportedError('Key format not supported');
@ -1524,7 +1524,7 @@ SubtleCrypto.prototype.exportKey = function (format, key) // <editor-fold defaul
/** /**
* The wrapKey method returns a new Promise object that will wrapped key(s). * The wrapKey method returns a new Promise object that will wrapped key(s).
* WebCrypto API reference {@link http://www.w3.org/TR/WebCryptoAPI/#SubtleCrypto-method-wrapKey}<br><br> * WebCrypto API reference {@link http://www.w3.org/TR/WebCryptoAPI/#SubtleCrypto-method-wrapKey}<br><br>
* *
* Supported algorithm names: * Supported algorithm names:
* <ul> * <ul>
* <li><b>GOST 28147-KW</b> Key Wrapping GOST 28147 modes</li> * <li><b>GOST 28147-KW</b> Key Wrapping GOST 28147 modes</li>
@ -1534,7 +1534,7 @@ SubtleCrypto.prototype.exportKey = function (format, key) // <editor-fold defaul
* <li><b>GOST R 34.10-MASK</b> Key Mask GOST R 34.10 modes</li> * <li><b>GOST R 34.10-MASK</b> Key Mask GOST R 34.10 modes</li>
* </ul> * </ul>
* For additional modes see {@link GostCipher}<br> * For additional modes see {@link GostCipher}<br>
* *
* @memberOf SubtleCrypto * @memberOf SubtleCrypto
* @method wrapKey * @method wrapKey
* @instance * @instance
@ -1567,7 +1567,7 @@ SubtleCrypto.prototype.wrapKey = function (format, key, wrappingKey, wrapAlgorit
/** /**
* The unwrapKey method returns a new Promise object that will unwrapped key(s). * The unwrapKey method returns a new Promise object that will unwrapped key(s).
* WebCrypto API reference {@link http://www.w3.org/TR/WebCryptoAPI/#SubtleCrypto-method-unwrapKey}<br><br> * WebCrypto API reference {@link http://www.w3.org/TR/WebCryptoAPI/#SubtleCrypto-method-unwrapKey}<br><br>
* *
* Supported algorithm names: * Supported algorithm names:
* <ul> * <ul>
* <li><b>GOST 28147-KW</b> Key Wrapping GOST 28147 modes</li> * <li><b>GOST 28147-KW</b> Key Wrapping GOST 28147 modes</li>
@ -1577,7 +1577,7 @@ SubtleCrypto.prototype.wrapKey = function (format, key, wrappingKey, wrapAlgorit
* <li><b>GOST R 34.10-MASK</b> Key Mask GOST R 34.10 modes</li> * <li><b>GOST R 34.10-MASK</b> Key Mask GOST R 34.10 modes</li>
* </ul> * </ul>
* For additional modes see {@link GostCipher}<br> * For additional modes see {@link GostCipher}<br>
* *
* @memberOf SubtleCrypto * @memberOf SubtleCrypto
* @method unwrapKey * @method unwrapKey
* @instance * @instance
@ -1620,21 +1620,21 @@ SubtleCrypto.prototype.unwrapKey = function (format, wrappedKey, unwrappingKey,
}; // </editor-fold> }; // </editor-fold>
/** /**
* The subtle attribute provides an instance of the SubtleCrypto * The subtle attribute provides an instance of the SubtleCrypto
* interface which provides low-level cryptographic primitives and * interface which provides low-level cryptographic primitives and
* algorithms. * algorithms.
* *
* @memberOf gostCrypto * @memberOf gostCrypto
* @type SubtleCrypto * @type SubtleCrypto
*/ */
gostCrypto.subtle = new SubtleCrypto(); gostCrypto.subtle = new SubtleCrypto();
/** /**
* The getRandomValues method generates cryptographically random values. * The getRandomValues method generates cryptographically random values.
* *
* First try to use Web Crypto random genereator. Next make random * First try to use Web Crypto random genereator. Next make random
* bytes based on standart Math.random mixed with time and mouse pointer * bytes based on standart Math.random mixed with time and mouse pointer
* *
* @memberOf gostCrypto * @memberOf gostCrypto
* @param {(CryptoOperationData)} array Destination buffer for random data * @param {(CryptoOperationData)} array Destination buffer for random data
*/ */

View file

@ -2,7 +2,7 @@
* GOST R 34.11-94 / GOST R 34.11-12 implementation * GOST R 34.11-94 / GOST R 34.11-12 implementation
* 1.76 * 1.76
* 2014-2016, Rudolf Nickolaev. All rights reserved. * 2014-2016, Rudolf Nickolaev. All rights reserved.
* *
* Exported for CyberChef by mshwed [m@ttshwed.com] * Exported for CyberChef by mshwed [m@ttshwed.com]
*/ */
@ -18,11 +18,11 @@
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
* *
* Converted to JavaScript from source https://www.streebog.net/ * Converted to JavaScript from source https://www.streebog.net/
* Copyright (c) 2013, Alexey Degtyarev. * Copyright (c) 2013, Alexey Degtyarev.
* All rights reserved. * All rights reserved.
* *
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
@ -33,7 +33,7 @@
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
* *
*/ */
import GostRandom from './gostRandom.mjs'; import GostRandom from './gostRandom.mjs';
@ -42,12 +42,12 @@
/* /*
* GOST R 34.11 * GOST R 34.11
* Common methods * Common methods
* *
*/ // <editor-fold defaultstate="collapsed"> */ // <editor-fold defaultstate="collapsed">
var root = {}; var root = {};
var rootCrypto = crypto var rootCrypto = crypto
var DataError = Error, var DataError = Error,
NotSupportedError = Error; NotSupportedError = Error;
@ -113,7 +113,7 @@ function getSeed(length) {
function buffer(d) { function buffer(d) {
if (d instanceof ArrayBuffer) if (d instanceof ArrayBuffer)
return d; return d;
else if (d && d.buffer && d.buffer instanceof ArrayBuffer) else if (d && d?.buffer instanceof ArrayBuffer)
return d.byteOffset === 0 && d.byteLength === d.buffer.byteLength ? return d.byteOffset === 0 && d.byteLength === d.buffer.byteLength ?
d.buffer : new Uint8Array(new Uint8Array(d, d.byteOffset, d.byteLength)).buffer; d.buffer : new Uint8Array(new Uint8Array(d, d.byteOffset, d.byteLength)).buffer;
else else
@ -122,16 +122,16 @@ function buffer(d) {
/** /**
* Algorithm name GOST R 34.11 or GOST R 34.11-12<br><br> * Algorithm name GOST R 34.11 or GOST R 34.11-12<br><br>
* *
* http://tools.ietf.org/html/rfc6986 * http://tools.ietf.org/html/rfc6986
* *
* The digest method returns digest data in according to GOST R 4311-2012.<br> * The digest method returns digest data in according to GOST R 4311-2012.<br>
* Size of digest also defines in algorithm name. * Size of digest also defines in algorithm name.
* <ul> * <ul>
* <li>GOST R 34.11-256-12 - 256 bits digest</li> * <li>GOST R 34.11-256-12 - 256 bits digest</li>
* <li>GOST R 34.11-512-12 - 512 bits digest</li> * <li>GOST R 34.11-512-12 - 512 bits digest</li>
* </ul> * </ul>
* *
* @memberOf GostDigest * @memberOf GostDigest
* @method digest * @method digest
* @instance * @instance
@ -140,13 +140,13 @@ function buffer(d) {
*/ */
var digest2012 = (function () // <editor-fold defaultstate="collapsed"> var digest2012 = (function () // <editor-fold defaultstate="collapsed">
{ {
// Constants // Constants
var buffer0 = new Int32Array(16); // [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]; var buffer0 = new Int32Array(16); // [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0];
var buffer512 = new Int32Array(16); // [512, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]; var buffer512 = new Int32Array(16); // [512, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0];
buffer512[0] = 512; buffer512[0] = 512;
// Constant C // Constant C
var C = (function (s) { var C = (function (s) {
var h = new Int32Array(b64decode(s)), var h = new Int32Array(b64decode(s)),
r = new Array(12); r = new Array(12);
@ -157,7 +157,7 @@ var digest2012 = (function () // <editor-fold defaultstate="collapsed">
'B0Wm8lllgN0jTXTMNnR2BRXTYKQIKkKiAWlnkpHgfEv8xIV1jbhOcRbQRS5DdmovH3xlwIEvy+vp2soe2lsIsbebsSFwBHnmVs3L1xui3VXKpwrbwmG1XFiZ1hJrF7WaMQG1Fg9e1WGYKyMKcur+89e1cA9GneNPGi+dqYq1o2+yCroK9ZYemTHbeoZD9LbCCdtiYDc6ycGxnjWQ5A/i03t7KbEUderyix+cUl9e8QY1hD1qKPw5Cscvzius3HT1LtHjhLy+DCLxN+iToepTNL4DUpMzE7fYddYD7YIs16k/NV5orRxynX08XDN+hY5I3eRxXaDhSPnSZhXos98f71f+bHz9WBdg9WPqqX6iVnoWGicjtwD/36P1OiVHF82/vf8PgNc1njVKEIYWHxwVf2MjqWwMQT+amUdHraxr6ktufWRGekBo+jVPkDZyxXG/tsa+wmYf8gq0t5oct6b6z8aO8Jq0mn8YbKRCUfnEZi3AOTB6O8Okb9nTOh2urk+uk9QUOk1WhojzSjyiTEUXNQQFSiiDaUcGNyyCLcWrkgnJk3oZMz5H08mHv+bHxp45VAkkv/6GrFHsxaruFg7H9B7nAr/UDX+k' + 'B0Wm8lllgN0jTXTMNnR2BRXTYKQIKkKiAWlnkpHgfEv8xIV1jbhOcRbQRS5DdmovH3xlwIEvy+vp2soe2lsIsbebsSFwBHnmVs3L1xui3VXKpwrbwmG1XFiZ1hJrF7WaMQG1Fg9e1WGYKyMKcur+89e1cA9GneNPGi+dqYq1o2+yCroK9ZYemTHbeoZD9LbCCdtiYDc6ycGxnjWQ5A/i03t7KbEUderyix+cUl9e8QY1hD1qKPw5Cscvzius3HT1LtHjhLy+DCLxN+iToepTNL4DUpMzE7fYddYD7YIs16k/NV5orRxynX08XDN+hY5I3eRxXaDhSPnSZhXos98f71f+bHz9WBdg9WPqqX6iVnoWGicjtwD/36P1OiVHF82/vf8PgNc1njVKEIYWHxwVf2MjqWwMQT+amUdHraxr6ktufWRGekBo+jVPkDZyxXG/tsa+wmYf8gq0t5oct6b6z8aO8Jq0mn8YbKRCUfnEZi3AOTB6O8Okb9nTOh2urk+uk9QUOk1WhojzSjyiTEUXNQQFSiiDaUcGNyyCLcWrkgnJk3oZMz5H08mHv+bHxp45VAkkv/6GrFHsxaruFg7H9B7nAr/UDX+k' +
'2ahRWTXCrDYvxKXRK43RaZAGm5LLK4n0msTbTTtEtIke3jaccfi3TkFBbgwCqucDp8mTTUJbH5vbWiODUURhcmAqH8uS3DgOVJwHppqKK3uxzrLbC0QKgIQJDeC3Vdk8JEKJJRs6fTreXxbs2JpMlJsiMRZUWo837ZxFmPvHtHTDtjsV0fqYNvRSdjswbB56SzNprwJn558DYTMbiuH/H9t4iv8c50GJ8/PkskjlKjhSbwWApt6+qxst84HNpMprXdhvwEpZot6Ybkd9Hc2678q5SOrvcR2KeWaEFCGAASBhB6vru2v62JT+WmPNxgIw+4nI79CezXsg1xvxSpK8SJkbstnVF/T6UijhiKqkHeeGzJEYne+AXZufITDUEiD4dx3fvDI8pM16sUkEsIAT0roxFvFn5443'); '2ahRWTXCrDYvxKXRK43RaZAGm5LLK4n0msTbTTtEtIke3jaccfi3TkFBbgwCqucDp8mTTUJbH5vbWiODUURhcmAqH8uS3DgOVJwHppqKK3uxzrLbC0QKgIQJDeC3Vdk8JEKJJRs6fTreXxbs2JpMlJsiMRZUWo837ZxFmPvHtHTDtjsV0fqYNvRSdjswbB56SzNprwJn558DYTMbiuH/H9t4iv8c50GJ8/PkskjlKjhSbwWApt6+qxst84HNpMprXdhvwEpZot6Ybkd9Hc2678q5SOrvcR2KeWaEFCGAASBhB6vru2v62JT+WmPNxgIw+4nI79CezXsg1xvxSpK8SJkbstnVF/T6UijhiKqkHeeGzJEYne+AXZufITDUEiD4dx3fvDI8pM16sUkEsIAT0roxFvFn5443');
// Precalc Ax // Precalc Ax
var Ax = (function (s) { var Ax = (function (s) {
return new Int32Array(b64decode(s)); return new Int32Array(b64decode(s));
})( })(
@ -201,12 +201,12 @@ var digest2012 = (function () // <editor-fold defaultstate="collapsed">
// Variables // Variables
var sigma, N, h; var sigma, N, h;
// 64bit tools // 64bit tools
function get8(x, i) { function get8(x, i) {
return (x[i >> 2] >> ((i & 3) << 3)) & 0xff; return (x[i >> 2] >> ((i & 3) << 3)) & 0xff;
} }
// 512bit tools // 512bit tools
function add512(x, y) { function add512(x, y) {
var CF = 0, w0, w1; var CF = 0, w0, w1;
for (var i = 0; i < 16; i++) { for (var i = 0; i < 16; i++) {
@ -315,7 +315,7 @@ var digest2012 = (function () // <editor-fold defaultstate="collapsed">
return function (data) { return function (data) {
// Cleanup // Cleanup
sigma = new512(); sigma = new512();
N = new512(); N = new512();
@ -357,9 +357,9 @@ var digest2012 = (function () // <editor-fold defaultstate="collapsed">
/** /**
* Algorithm name GOST R 34.11-94<br><br> * Algorithm name GOST R 34.11-94<br><br>
* *
* http://tools.ietf.org/html/rfc5831 * http://tools.ietf.org/html/rfc5831
* *
* The digest method returns digest data in according to GOST R 34.11-94. * The digest method returns digest data in according to GOST R 34.11-94.
* @memberOf GostDigest * @memberOf GostDigest
* @method digest * @method digest
@ -512,7 +512,7 @@ var digest94 = (function () // <editor-fold defaultstate="collapsed">
var n = d.length; var n = d.length;
var r = n % 32, q = (n - r) / 32; var r = n % 32, q = (n - r) / 32;
// Proccess full blocks // Proccess full blocks
for (var i = 0; i < q; i++) { for (var i = 0; i < q; i++) {
var b = new Uint8Array(d.buffer, i * 32, 32); var b = new Uint8Array(d.buffer, i * 32, 32);
@ -553,11 +553,11 @@ var digest94 = (function () // <editor-fold defaultstate="collapsed">
/** /**
* Algorithm name SHA-1<br><br> * Algorithm name SHA-1<br><br>
* *
* https://tools.ietf.org/html/rfc3174 * https://tools.ietf.org/html/rfc3174
* *
* The digest method returns digest data in according to SHA-1.<br> * The digest method returns digest data in according to SHA-1.<br>
* *
* @memberOf GostDigest * @memberOf GostDigest
* @method digest * @method digest
* @instance * @instance
@ -700,9 +700,9 @@ var digestSHA1 = (function () // <editor-fold defaultstate="collapsed">
} // </editor-fold> } // </editor-fold>
)(); )();
/** /**
* Algorithm name GOST R 34.11-HMAC<br><br> * Algorithm name GOST R 34.11-HMAC<br><br>
* *
* HMAC with the specified hash function. * HMAC with the specified hash function.
* @memberOf GostDigest * @memberOf GostDigest
* @method sign * @method sign
@ -742,9 +742,9 @@ function signHMAC(key, data) // <editor-fold defaultstate="collapsed">
/** /**
* Algorithm name GOST R 34.11-HMAC<br><br> * Algorithm name GOST R 34.11-HMAC<br><br>
* *
* Verify HMAC based on GOST R 34.11 hash * Verify HMAC based on GOST R 34.11 hash
* *
* @memberOf GostDigest * @memberOf GostDigest
* @method verify * @method verify
* @instance * @instance
@ -768,9 +768,9 @@ function verifyHMAC(key, signature, data) // <editor-fold defaultstate="collapse
/** /**
* Algorithm name GOST R 34.11-KDF<br><br> * Algorithm name GOST R 34.11-KDF<br><br>
* *
* Simple generate key 256/512 bit random seed for derivation algorithms * Simple generate key 256/512 bit random seed for derivation algorithms
* *
* @memberOf GostDigest * @memberOf GostDigest
* @method generateKey * @method generateKey
* @instance * @instance
@ -783,7 +783,7 @@ function generateKey() // <editor-fold defaultstate="collapsed">
/** /**
* Algorithm name GOST R 34.11-PFXKDF<br><br> * Algorithm name GOST R 34.11-PFXKDF<br><br>
* *
* Derive bits from password (PKCS12 mode) * Derive bits from password (PKCS12 mode)
* <ul> * <ul>
* <li>algorithm.salt - random value, salt</li> * <li>algorithm.salt - random value, salt</li>
@ -868,16 +868,16 @@ function deriveBitsPFXKDF(baseKey, length) // <editor-fold defaultstate="collaps
/** /**
* Algorithm name GOST R 34.11-KDF<br><br> * Algorithm name GOST R 34.11-KDF<br><br>
* *
* Derive bits for KEK deversification in 34.10-2012 algorithm * Derive bits for KEK deversification in 34.10-2012 algorithm
* KDF(KEK, UKM, label) = HMAC256 (KEK, 0x01|label|0x00|UKM|0x01|0x00) * KDF(KEK, UKM, label) = HMAC256 (KEK, 0x01|label|0x00|UKM|0x01|0x00)
* Default label = 0x26|0xBD|0xB8|0x78 * Default label = 0x26|0xBD|0xB8|0x78
* *
* @memberOf GostDigest * @memberOf GostDigest
* @method deriveBits * @method deriveBits
* @instance * @instance
* @param {(ArrayBuffer|TypedArray)} baseKey base key for deriviation * @param {(ArrayBuffer|TypedArray)} baseKey base key for deriviation
* @param {number} length output bit-length * @param {number} length output bit-length
* @returns {ArrayBuffer} result * @returns {ArrayBuffer} result
*/ */
function deriveBitsKDF(baseKey, length) // <editor-fold defaultstate="collapsed"> function deriveBitsKDF(baseKey, length) // <editor-fold defaultstate="collapsed">
@ -907,7 +907,7 @@ function deriveBitsKDF(baseKey, length) // <editor-fold defaultstate="collapsed"
/** /**
* Algorithm name GOST R 34.11-PBKDF1<br><br> * Algorithm name GOST R 34.11-PBKDF1<br><br>
* *
* Derive bits from password * Derive bits from password
* <ul> * <ul>
* <li>algorithm.salt - random value, salt</li> * <li>algorithm.salt - random value, salt</li>
@ -943,7 +943,7 @@ function deriveBitsPBKDF1(baseKey, length) // <editor-fold defaultstate="collaps
/** /**
* Algorithm name GOST R 34.11-PBKDF2<br><br> * Algorithm name GOST R 34.11-PBKDF2<br><br>
* *
* Derive bits from password * Derive bits from password
* <ul> * <ul>
* <li>algorithm.salt - random value, salt</li> * <li>algorithm.salt - random value, salt</li>
@ -999,7 +999,7 @@ function deriveBitsPBKDF2(baseKey, length) // <editor-fold defaultstate="collaps
/** /**
* Algorithm name GOST R 34.11-CPKDF<br><br> * Algorithm name GOST R 34.11-CPKDF<br><br>
* *
* Derive bits from password. CryptoPro algorithm * Derive bits from password. CryptoPro algorithm
* <ul> * <ul>
* <li>algorithm.salt - random value, salt</li> * <li>algorithm.salt - random value, salt</li>
@ -1074,9 +1074,9 @@ function deriveBitsCP(baseKey, length) {
/** /**
* Algorithm name GOST R 34.11-KDF or GOST R 34.11-PBKDF2 or other<br><br> * Algorithm name GOST R 34.11-KDF or GOST R 34.11-PBKDF2 or other<br><br>
* *
* Derive key from derive bits subset * Derive key from derive bits subset
* *
* @memberOf GostDigest * @memberOf GostDigest
* @method deriveKey * @method deriveKey
* @instance * @instance
@ -1090,11 +1090,11 @@ function deriveKey(baseKey) // <editor-fold defaultstate="collapsed">
/** /**
* GOST R 34.11 Algorithm<br><br> * GOST R 34.11 Algorithm<br><br>
* *
* References: {@link http://tools.ietf.org/html/rfc6986} and {@link http://tools.ietf.org/html/rfc5831}<br><br> * References: {@link http://tools.ietf.org/html/rfc6986} and {@link http://tools.ietf.org/html/rfc5831}<br><br>
* *
* Normalized algorithm identifier common parameters: * Normalized algorithm identifier common parameters:
* *
* <ul> * <ul>
* <li><b>name</b> Algorithm name 'GOST R 34.11'</li> * <li><b>name</b> Algorithm name 'GOST R 34.11'</li>
* <li><b>version</b> Algorithm version * <li><b>version</b> Algorithm version
@ -1121,9 +1121,9 @@ function deriveKey(baseKey) // <editor-fold defaultstate="collapsed">
* </li> * </li>
* <li><b>sBox</b> Paramset sBox for GOST 28147-89. Used only if version = 1994</li> * <li><b>sBox</b> Paramset sBox for GOST 28147-89. Used only if version = 1994</li>
* </ul> * </ul>
* *
* Supported algorithms, modes and parameters: * Supported algorithms, modes and parameters:
* *
* <ul> * <ul>
* <li>Digest HASH mode (default)</li> * <li>Digest HASH mode (default)</li>
* <li>Sign/Verify HMAC modes parameters depends on version and length * <li>Sign/Verify HMAC modes parameters depends on version and length
@ -1150,7 +1150,7 @@ function deriveKey(baseKey) // <editor-fold defaultstate="collapsed">
* <ul> * <ul>
* <li><b>salt</b> {@link CryptoOperationData} Random salt as input for HMAC algorithm</li> * <li><b>salt</b> {@link CryptoOperationData} Random salt as input for HMAC algorithm</li>
* <li><b>iterations</b> Iteration count. GOST recomended value 1000 (default) or 2000</li> * <li><b>iterations</b> Iteration count. GOST recomended value 1000 (default) or 2000</li>
* <li><b>diversifier</b> Deversifier, ID=1 - key material for performing encryption or decryption, * <li><b>diversifier</b> Deversifier, ID=1 - key material for performing encryption or decryption,
* ID=2 - IV (Initial Value) for encryption or decryption, ID=3 - integrity key for MACing</li> * ID=2 - IV (Initial Value) for encryption or decryption, ID=3 - integrity key for MACing</li>
* </ul> * </ul>
* </li> * </li>
@ -1161,7 +1161,7 @@ function deriveKey(baseKey) // <editor-fold defaultstate="collapsed">
* </ul> * </ul>
* </li> * </li>
* </ul> * </ul>
* *
* @class GostDigest * @class GostDigest
* @param {AlgorithmIdentifier} algorithm WebCryptoAPI algorithm identifier * @param {AlgorithmIdentifier} algorithm WebCryptoAPI algorithm identifier
*/ */
@ -1257,4 +1257,4 @@ function GostDigest(algorithm) // <editor-fold defaultstate="collapsed">
} }
} // </editor-fold> } // </editor-fold>
export default GostDigest; export default GostDigest;

View file

@ -16,10 +16,10 @@
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
* *
* Used library JSBN http://www-cs-students.stanford.edu/~tjw/jsbn/ * Used library JSBN http://www-cs-students.stanford.edu/~tjw/jsbn/
* Copyright (c) 2003-2005 Tom Wu (tjw@cs.Stanford.EDU) * Copyright (c) 2003-2005 Tom Wu (tjw@cs.Stanford.EDU)
* *
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
@ -30,7 +30,7 @@
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
* *
*/ */
import GostRandom from './gostRandom.mjs'; import GostRandom from './gostRandom.mjs';
@ -40,11 +40,11 @@
/* /*
* Predefined curves and params collection * Predefined curves and params collection
* *
* http://tools.ietf.org/html/rfc5832 * http://tools.ietf.org/html/rfc5832
* http://tools.ietf.org/html/rfc7091 * http://tools.ietf.org/html/rfc7091
* http://tools.ietf.org/html/rfc4357 * http://tools.ietf.org/html/rfc4357
* *
*/ // <editor-fold defaultstate="collapsed"> */ // <editor-fold defaultstate="collapsed">
var root = {}; var root = {};
@ -181,10 +181,10 @@ var GostParams = {
} }
}; // </editor-fold> }; // </editor-fold>
/* /*
* BigInteger arithmetic tools * BigInteger arithmetic tools
* optimized release of http://www-cs-students.stanford.edu/~tjw/jsbn/jsbn.js * optimized release of http://www-cs-students.stanford.edu/~tjw/jsbn/jsbn.js
* *
*/ // <editor-fold defaultstate="collapsed"> */ // <editor-fold defaultstate="collapsed">
// Bits per one element // Bits per one element
@ -688,8 +688,8 @@ function extend(c, o) {
/* /*
* Classic, Barret, Mongomery reductions, optimized ExpMod algorithms * Classic, Barret, Mongomery reductions, optimized ExpMod algorithms
* optimized release of http://www-cs-students.stanford.edu/~tjw/jsbn/jsbn2.js * optimized release of http://www-cs-students.stanford.edu/~tjw/jsbn/jsbn2.js
* *
*/ // <editor-fold defaultstate="collapsed"> */ // <editor-fold defaultstate="collapsed">
// Classic reduction // Classic reduction
var Classic = function (m) { var Classic = function (m) {
@ -974,8 +974,8 @@ function expMod(x, e, m) {
/* /*
* EC Field Elements, Points, Curves * EC Field Elements, Points, Curves
* optimized release of http://www-cs-students.stanford.edu/~tjw/jsbn/ec.js * optimized release of http://www-cs-students.stanford.edu/~tjw/jsbn/ec.js
* *
*/ // <editor-fold defaultstate="collapsed"> */ // <editor-fold defaultstate="collapsed">
// EC Field Elemets // EC Field Elemets
function newFE(a, x) { function newFE(a, x) {
@ -1233,8 +1233,8 @@ function newCurve(q, a, b) {
/* /*
* Converion tools (hex, binary) * Converion tools (hex, binary)
* *
*/ // <editor-fold defaultstate="collapsed"> */ // <editor-fold defaultstate="collapsed">
function atobi(d) { function atobi(d) {
var k = 8; var k = 8;
@ -1445,7 +1445,7 @@ function hash(d) {
function buffer(d) { function buffer(d) {
if (d instanceof CryptoOperationData) if (d instanceof CryptoOperationData)
return d; return d;
else if (d && d.buffer && d.buffer instanceof CryptoOperationData) else if (d && d?.buffer instanceof CryptoOperationData)
return d.byteOffset === 0 && d.byteLength === d.buffer.byteLength ? return d.byteOffset === 0 && d.byteLength === d.buffer.byteLength ?
d.buffer : new Uint8Array(new Uint8Array(d, d.byteOffset, d.byteLength)).buffer; d.buffer : new Uint8Array(new Uint8Array(d, d.byteOffset, d.byteLength)).buffer;
else else
@ -1483,9 +1483,9 @@ function getSeed(length) {
/** /**
* Algorithm name GOST R 34.10<br><br> * Algorithm name GOST R 34.10<br><br>
* *
* The sign method returns sign data generated with the supplied privateKey.<br> * The sign method returns sign data generated with the supplied privateKey.<br>
* *
* @memberOf GostSign * @memberOf GostSign
* @method sign * @method sign
* @instance * @instance
@ -1518,7 +1518,7 @@ function sign(privateKey, data) // <editor-fold defaultstate="collapsed">
getSeed(this.bitLength)), q); // pseudo random 0 < k < q getSeed(this.bitLength)), q); // pseudo random 0 < k < q
// Stage 4 // Stage 4
if (this.curve) { if (this.curve) {
// Gost R 34.10-2001 || Gost R 34.10-2012 // Gost R 34.10-2001 || Gost R 34.10-2012
var P = this.P; var P = this.P;
var C = mulEC(P, k); var C = mulEC(P, k);
r = mod(getX(C), q); r = mod(getX(C), q);
@ -1552,9 +1552,9 @@ function sign(privateKey, data) // <editor-fold defaultstate="collapsed">
/** /**
* Algorithm name GOST R 34.10<br><br> * Algorithm name GOST R 34.10<br><br>
* *
* The verify method returns signature verification for the supplied publicKey.<br> * The verify method returns signature verification for the supplied publicKey.<br>
* *
* @memberOf GostSign * @memberOf GostSign
* @method sign * @method sign
* @instance * @instance
@ -1578,7 +1578,7 @@ function verify(publicKey, signature, data) // <editor-fold defaultstate="collap
signature = swap(signature); signature = swap(signature);
var zetta = to2(signature); var zetta = to2(signature);
// Swap bytes for CryptoPro algorithm // Swap bytes for CryptoPro algorithm
s = zetta[1]; // first 32 octets contain the big-endian representation of s s = zetta[1]; // first 32 octets contain the big-endian representation of s
r = zetta[0]; // and second 32 octets contain the big-endian representation of r r = zetta[0]; // and second 32 octets contain the big-endian representation of r
} }
if (compare(r, q) >= 0 || compare(s, q) >= 0) if (compare(r, q) >= 0 || compare(s, q) >= 0)
@ -1597,13 +1597,13 @@ function verify(publicKey, signature, data) // <editor-fold defaultstate="collap
var z2 = sub(q, mod(mul(r, v), q)); var z2 = sub(q, mod(mul(r, v), q));
// Stage 6 // Stage 6
if (this.curve) { if (this.curve) {
// Gost R 34.10-2001 || Gost R 34.10-2012 // Gost R 34.10-2001 || Gost R 34.10-2012
var k2 = to2(publicKey), var k2 = to2(publicKey),
curve = this.curve, curve = this.curve,
P = this.P, P = this.P,
x = newFE(curve, k2[0]), // first 32 octets contain the little-endian representation of x x = newFE(curve, k2[0]), // first 32 octets contain the little-endian representation of x
y = newFE(curve, k2[1]), // and second 32 octets contain the little-endian representation of y. y = newFE(curve, k2[1]), // and second 32 octets contain the little-endian representation of y.
Q = new newEC(curve, x, y); // This corresponds to the binary representation of (<y>256||<x>256) Q = new newEC(curve, x, y); // This corresponds to the binary representation of (<y>256||<x>256)
var C = mulTwoEC(P, z1, Q, z2); var C = mulTwoEC(P, z1, Q, z2);
var R = mod(getX(C), q); var R = mod(getX(C), q);
} else { } else {
@ -1618,10 +1618,10 @@ function verify(publicKey, signature, data) // <editor-fold defaultstate="collap
/** /**
* Algorithm name GOST R 34.10<br><br> * Algorithm name GOST R 34.10<br><br>
* *
* The generateKey method returns a new generated key pair using the specified * The generateKey method returns a new generated key pair using the specified
* AlgorithmIdentifier. * AlgorithmIdentifier.
* *
* @memberOf GostSign * @memberOf GostSign
* @method generateKey * @method generateKey
* @instance * @instance
@ -1664,9 +1664,9 @@ function generateKey() // <editor-fold defaultstate="collapsed">
/** /**
* Algorithm name GOST R 34.10 mode MASK<br><br> * Algorithm name GOST R 34.10 mode MASK<br><br>
* *
* The generateMaskKey method returns a new generated key mask using for wrapping. * The generateMaskKey method returns a new generated key mask using for wrapping.
* *
* @memberOf GostSign * @memberOf GostSign
* @method generateMaskKey * @method generateMaskKey
* @instance * @instance
@ -1689,9 +1689,9 @@ function generateMaskKey() // <editor-fold defaultstate="collapsed">
/** /**
* Algorithm name GOST R 34.10<br><br> * Algorithm name GOST R 34.10<br><br>
* *
* Unwrap private key from private key and ukm (mask) * Unwrap private key from private key and ukm (mask)
* *
* @memberOf GostSign * @memberOf GostSign
* @method unwrap * @method unwrap
* @instance * @instance
@ -1714,9 +1714,9 @@ function unwrapKey(baseKey, data) // <editor-fold defaultstate="collapsed">
/** /**
* Algorithm name GOST R 34.10<br><br> * Algorithm name GOST R 34.10<br><br>
* *
* Wrap private key with private key and ukm (mask) * Wrap private key with private key and ukm (mask)
* *
* @memberOf GostSign * @memberOf GostSign
* @method unwrap * @method unwrap
* @instance * @instance
@ -1739,7 +1739,7 @@ function wrapKey(baseKey, data) // <editor-fold defaultstate="collapsed">
/** /**
* Algorithm name GOST R 34.10<br><br> * Algorithm name GOST R 34.10<br><br>
* *
* @memberOf GostSign * @memberOf GostSign
* @method derive * @method derive
* @instance * @instance
@ -1755,36 +1755,36 @@ function derive(baseKey) // <editor-fold defaultstate="collapsed">
var x = mod(atobi(buffer(baseKey)), q); var x = mod(atobi(buffer(baseKey)), q);
if (this.curve) { if (this.curve) {
// 1) Let K(x,y,UKM) = ((UKM*x)(mod q)) . (y.P) (512 bit), where // 1) Let K(x,y,UKM) = ((UKM*x)(mod q)) . (y.P) (512 bit), where
// x - senders private key (256 bit) // x - senders private key (256 bit)
// x.P - senders public key (512 bit) // x.P - senders public key (512 bit)
// y - recipients private key (256 bit) // y - recipients private key (256 bit)
// y.P - recipients public key (512 bit) // y.P - recipients public key (512 bit)
// UKM - non-zero integer, produced as in step 2 p. 6.1 [GOSTR341001] // UKM - non-zero integer, produced as in step 2 p. 6.1 [GOSTR341001]
// P - base point on the elliptic curve (two 256-bit coordinates) // P - base point on the elliptic curve (two 256-bit coordinates)
// UKM*x - x multiplied by UKM as integers // UKM*x - x multiplied by UKM as integers
// x.P - a multiple point // x.P - a multiple point
var K = mulEC(this.peer_Q, mod(mul(ukm, x), q)); var K = mulEC(this.peer_Q, mod(mul(ukm, x), q));
k = from2(getX(K), getY(K), // This corresponds to the binary representation of (<y>256||<x>256) k = from2(getX(K), getY(K), // This corresponds to the binary representation of (<y>256||<x>256)
this.bitLength); this.bitLength);
} else { } else {
// 1) Let K(x,y) = a^(x*y) (mod p), where // 1) Let K(x,y) = a^(x*y) (mod p), where
// x - senders private key, a^x - senders public key // x - senders private key, a^x - senders public key
// y - recipients private key, a^y - recipients public key // y - recipients private key, a^y - recipients public key
// a, p - parameters // a, p - parameters
var p = this.p, a = this.a; var p = this.p, a = this.a;
k = bitoa(expMod(this.peer_y, x, p)); k = bitoa(expMod(this.peer_y, x, p));
} }
// 2) Calculate a 256-bit hash of K(x,y,UKM): // 2) Calculate a 256-bit hash of K(x,y,UKM):
// KEK(x,y,UKM) = gostSign (K(x,y,UKM) // KEK(x,y,UKM) = gostSign (K(x,y,UKM)
return hash.call(this, k); return hash.call(this, k);
} // </editor-fold> } // </editor-fold>
/** /**
* Algorithm name GOST R 34.10<br><br> * Algorithm name GOST R 34.10<br><br>
* *
* The deriveBits method returns length bits on baseKey. * The deriveBits method returns length bits on baseKey.
* *
* @memberOf GostSign * @memberOf GostSign
* @method deriveBits * @method deriveBits
* @instance * @instance
@ -1806,13 +1806,13 @@ function deriveBits(baseKey, length) // <editor-fold defaultstate="collapsed">
/** /**
* Algorithm name GOST R 34.10<br><br> * Algorithm name GOST R 34.10<br><br>
* *
* The deriveKey method returns 256 bit Key encryption key on baseKey. * The deriveKey method returns 256 bit Key encryption key on baseKey.
* *
* This algorithm creates a key encryption key (KEK) using 64 bit UKM, * This algorithm creates a key encryption key (KEK) using 64 bit UKM,
* the senders private key, and the recipients public key (or the * the senders private key, and the recipients public key (or the
* reverse of the latter pair * reverse of the latter pair
* *
* @memberOf GostSign * @memberOf GostSign
* @method deriveKey * @method deriveKey
* @instance * @instance
@ -1831,11 +1831,11 @@ function deriveKey(baseKey) // <editor-fold defaultstate="collapsed">
/** /**
* Gost R 34.10 universal object<br><br> * Gost R 34.10 universal object<br><br>
* *
* References: {@link http://tools.ietf.org/html/rfc6986} and {@link http://tools.ietf.org/html/rfc5831}<br><br> * References: {@link http://tools.ietf.org/html/rfc6986} and {@link http://tools.ietf.org/html/rfc5831}<br><br>
* *
* Normalized algorithm identifier common parameters: * Normalized algorithm identifier common parameters:
* *
* <ul> * <ul>
* <li><b>name</b> Algorithm name 'GOST R 34.10'</li> * <li><b>name</b> Algorithm name 'GOST R 34.10'</li>
* <li><b>version</b> Algorithm version * <li><b>version</b> Algorithm version
@ -1859,9 +1859,9 @@ function deriveKey(baseKey) // <editor-fold defaultstate="collapsed">
* </li> * </li>
* <li><b>sBox</b> Paramset sBox for GOST 34.11-94. Used only if version = 1994 or 2001</li> * <li><b>sBox</b> Paramset sBox for GOST 34.11-94. Used only if version = 1994 or 2001</li>
* </ul> * </ul>
* *
* Supported algorithms, modes and parameters: * Supported algorithms, modes and parameters:
* *
* <ul> * <ul>
* <li>Sign/Verify mode (SIGN)</li> * <li>Sign/Verify mode (SIGN)</li>
* <li>DeriveKey/DeriveBits mode (DH) * <li>DeriveKey/DeriveBits mode (DH)
@ -1897,7 +1897,7 @@ function deriveKey(baseKey) // <editor-fold defaultstate="collapsed">
* </ul> * </ul>
* </li> * </li>
* </ul> * </ul>
* *
* @class GostSign * @class GostSign
* @param {AlgorithmIndentifier} algorithm * @param {AlgorithmIndentifier} algorithm
*/ */
@ -2015,7 +2015,7 @@ function GostSign(algorithm) // <editor-fold defaultstate="collapsed">
} }
// Pregenerated seed for key exchange algorithms // Pregenerated seed for key exchange algorithms
if (algorithm.ukm) // Now don't check size if (algorithm.ukm) // Now don't check size
this.ukm = algorithm.ukm; this.ukm = algorithm.ukm;
} // </editor-fold> } // </editor-fold>

View file

@ -11,6 +11,7 @@ import HTMLCategory from "./HTMLCategory.mjs";
import HTMLOperation from "./HTMLOperation.mjs"; import HTMLOperation from "./HTMLOperation.mjs";
import Split from "split.js"; import Split from "split.js";
import moment from "moment-timezone"; import moment from "moment-timezone";
import cptable from "codepage";
/** /**
@ -41,6 +42,10 @@ class App {
this.autoBakePause = false; this.autoBakePause = false;
this.progress = 0; this.progress = 0;
this.ingId = 0; this.ingId = 0;
this.appLoaded = false;
this.workerLoaded = false;
this.waitersLoaded = false;
} }
@ -59,11 +64,10 @@ class App {
this.manager.output.saveBombe(); this.manager.output.saveBombe();
this.adjustComponentSizes(); this.adjustComponentSizes();
this.setCompileMessage(); this.setCompileMessage();
this.uriParams = this.getURIParams();
log.debug("App loaded"); log.debug("App loaded");
this.appLoaded = true; this.appLoaded = true;
this.loadURIParams();
this.loaded(); this.loaded();
} }
@ -76,9 +80,12 @@ class App {
loaded() { loaded() {
// Check that both the app and the worker have loaded successfully, and that // Check that both the app and the worker have loaded successfully, and that
// we haven't already loaded before attempting to remove the loading screen. // we haven't already loaded before attempting to remove the loading screen.
if (!this.workerLoaded || !this.appLoaded || if (!this.workerLoaded || !this.appLoaded || !this.waitersLoaded ||
!document.getElementById("loader-wrapper")) return; !document.getElementById("loader-wrapper")) return;
// Load state from URI
this.loadURIParams(this.uriParams);
// Trigger CSS animations to remove preloader // Trigger CSS animations to remove preloader
document.body.classList.add("loaded"); document.body.classList.add("loaded");
@ -153,11 +160,9 @@ class App {
if (this.autoBake_ && !this.baking) { if (this.autoBake_ && !this.baking) {
log.debug("Auto-baking"); log.debug("Auto-baking");
this.manager.input.inputWorker.postMessage({ this.manager.worker.bakeInputs({
action: "autobake", nums: [this.manager.tabs.getActiveTab("input")],
data: { step: false
activeTab: this.manager.tabs.getActiveInputTab()
}
}); });
} else { } else {
this.manager.controls.showStaleIndicator(); this.manager.controls.showStaleIndicator();
@ -174,7 +179,7 @@ class App {
// Reset status using cancelBake // Reset status using cancelBake
this.manager.worker.cancelBake(true, false); this.manager.worker.cancelBake(true, false);
const activeTab = this.manager.tabs.getActiveInputTab(); const activeTab = this.manager.tabs.getActiveTab("input");
if (activeTab === -1) return; if (activeTab === -1) return;
let progress = 0; let progress = 0;
@ -221,7 +226,7 @@ class App {
setInput(input) { setInput(input) {
// Get the currently active tab. // Get the currently active tab.
// If there isn't one, assume there are no inputs so use inputNum of 1 // If there isn't one, assume there are no inputs so use inputNum of 1
let inputNum = this.manager.tabs.getActiveInputTab(); let inputNum = this.manager.tabs.getActiveTab("input");
if (inputNum === -1) inputNum = 1; if (inputNum === -1) inputNum = 1;
this.manager.input.updateInputValue(inputNum, input); this.manager.input.updateInputValue(inputNum, input);
@ -276,7 +281,15 @@ class App {
} }
// Add edit button to first category (Favourites) // Add edit button to first category (Favourites)
document.querySelector("#categories a").appendChild(document.getElementById("edit-favourites")); const favCat = document.querySelector("#categories a");
favCat.appendChild(document.getElementById("edit-favourites"));
favCat.setAttribute("data-help-title", "Favourite operations");
favCat.setAttribute("data-help", `<p>This category displays your favourite operations.</p>
<ul>
<li><b>To add:</b> drag an operation over the Favourites category</li>
<li><b>To reorder:</b> Click on the 'Edit favourites' button and drag operations up and down in the list provided</li>
<li><b>To remove:</b> Click on the 'Edit favourites' button and hit the delete button next to the operation you want to remove</li>
</ul>`);
} }
@ -335,7 +348,7 @@ class App {
let favourites; let favourites;
if (this.isLocalStorageAvailable()) { if (this.isLocalStorageAvailable()) {
favourites = localStorage.favourites && localStorage.favourites.length > 2 ? favourites = localStorage?.favourites?.length > 2 ?
JSON.parse(localStorage.favourites) : JSON.parse(localStorage.favourites) :
this.dfavourites; this.dfavourites;
favourites = this.validFavourites(favourites); favourites = this.validFavourites(favourites);
@ -451,13 +464,15 @@ class App {
* Searches the URI parameters for recipe and input parameters. * Searches the URI parameters for recipe and input parameters.
* If recipe is present, replaces the current recipe with the recipe provided in the URI. * If recipe is present, replaces the current recipe with the recipe provided in the URI.
* If input is present, decodes and sets the input to the one provided in the URI. * If input is present, decodes and sets the input to the one provided in the URI.
* If character encodings are present, sets them appropriately.
* If theme is present, uses the theme. * If theme is present, uses the theme.
* *
* @param {Object} params
* @fires Manager#statechange * @fires Manager#statechange
*/ */
loadURIParams() { loadURIParams(params=this.getURIParams()) {
this.autoBakePause = true; this.autoBakePause = true;
this.uriParams = this.getURIParams(); this.uriParams = params;
// Read in recipe from URI params // Read in recipe from URI params
if (this.uriParams.recipe) { if (this.uriParams.recipe) {
@ -482,11 +497,39 @@ class App {
search.dispatchEvent(new Event("search")); search.dispatchEvent(new Event("search"));
} }
// Input Character Encoding
// Must be set before the input is loaded
if (this.uriParams.ienc) {
this.manager.input.chrEncChange(parseInt(this.uriParams.ienc, 10));
}
// Output Character Encoding
if (this.uriParams.oenc) {
this.manager.output.chrEncChange(parseInt(this.uriParams.oenc, 10));
}
// Input EOL sequence
if (this.uriParams.ieol) {
this.manager.input.eolChange(this.uriParams.ieol);
}
// Output EOL sequence
if (this.uriParams.oeol) {
this.manager.output.eolChange(this.uriParams.oeol);
}
// Read in input data from URI params // Read in input data from URI params
if (this.uriParams.input) { if (this.uriParams.input) {
try { try {
const inputData = fromBase64(this.uriParams.input); let inputVal;
this.setInput(inputData); const inputChrEnc = this.manager.input.getChrEnc();
const inputData = fromBase64(this.uriParams.input, null, "byteArray");
if (inputChrEnc > 0) {
inputVal = cptable.utils.decode(inputChrEnc, inputData);
} else {
inputVal = Utils.byteArrayToChars(inputData);
}
this.setInput(inputVal);
} catch (err) {} } catch (err) {}
} }
@ -589,6 +632,7 @@ class App {
this.manager.recipe.adjustWidth(); this.manager.recipe.adjustWidth();
this.manager.input.calcMaxTabs(); this.manager.input.calcMaxTabs();
this.manager.output.calcMaxTabs(); this.manager.output.calcMaxTabs();
this.manager.controls.calcControlsHeight();
} }
@ -620,6 +664,8 @@ class App {
const notice = document.getElementById("notice"); const notice = document.getElementById("notice");
notice.innerHTML = compileInfo; notice.innerHTML = compileInfo;
notice.setAttribute("title", Utils.stripHtmlTags(window.compileMessage)); notice.setAttribute("title", Utils.stripHtmlTags(window.compileMessage));
notice.setAttribute("data-help-title", "Last build");
notice.setAttribute("data-help", "This live version of CyberChef is updated whenever new commits are added to the master branch of the CyberChef repository. It represents the latest, most up-to-date build of CyberChef.");
} }
@ -727,21 +773,22 @@ class App {
* @param {event} e * @param {event} e
*/ */
stateChange(e) { stateChange(e) {
this.progress = 0; debounce(function() {
this.autoBake(); this.progress = 0;
this.autoBake();
this.updateTitle(true, null, true); this.updateURL(true, null, true);
}, 20, "stateChange", this, [])();
} }
/** /**
* Update the page title to contain the new recipe * Update the page title and URL to contain the new recipe
* *
* @param {boolean} includeInput * @param {boolean} includeInput
* @param {string} input * @param {string} [input=null]
* @param {boolean} [changeUrl=true] * @param {boolean} [changeUrl=true]
*/ */
updateTitle(includeInput, input, changeUrl=true) { updateURL(includeInput, input=null, changeUrl=true) {
// Set title // Set title
const recipeConfig = this.getRecipeConfig(); const recipeConfig = this.getRecipeConfig();
let title = "CyberChef"; let title = "CyberChef";

View file

@ -38,7 +38,7 @@ class HTMLCategory {
* @returns {string} * @returns {string}
*/ */
toHtml() { toHtml() {
const catName = "cat" + this.name.replace(/[\s/-:_]/g, ""); const catName = "cat" + this.name.replace(/[\s/\-:_]/g, "");
let html = `<div class="panel category"> let html = `<div class="panel category">
<a class="category-title" data-toggle="collapse" data-target="#${catName}"> <a class="category-title" data-toggle="collapse" data-target="#${catName}">
${this.name} ${this.name}

View file

@ -54,7 +54,7 @@ class HTMLIngredient {
case "string": case "string":
case "binaryString": case "binaryString":
case "byteArray": case "byteArray":
html += `<div class="form-group"> html += `<div class="form-group ing-wide">
<label for="${this.id}" <label for="${this.id}"
${this.hint ? `data-toggle="tooltip" title="${this.hint}"` : ""} ${this.hint ? `data-toggle="tooltip" title="${this.hint}"` : ""}
class="bmd-label-floating">${this.name}</label> class="bmd-label-floating">${this.name}</label>
@ -70,7 +70,7 @@ class HTMLIngredient {
break; break;
case "shortString": case "shortString":
case "binaryShortString": case "binaryShortString":
html += `<div class="form-group inline"> html += `<div class="form-group ing-short">
<label for="${this.id}" <label for="${this.id}"
${this.hint ? `data-toggle="tooltip" title="${this.hint}"` : ""} ${this.hint ? `data-toggle="tooltip" title="${this.hint}"` : ""}
class="bmd-label-floating inline">${this.name}</label> class="bmd-label-floating inline">${this.name}</label>
@ -85,7 +85,7 @@ class HTMLIngredient {
</div>`; </div>`;
break; break;
case "toggleString": case "toggleString":
html += `<div class="form-group input-group"> html += `<div class="form-group input-group ing-wide" data-help-title="Multi-type ingredients" data-help="Selecting a data type from the dropdown will change how the ingredient is interpreted by the operation.">
<div class="toggle-string"> <div class="toggle-string">
<label for="${this.id}" <label for="${this.id}"
${this.hint ? `data-toggle="tooltip" title="${this.hint}"` : ""} ${this.hint ? `data-toggle="tooltip" title="${this.hint}"` : ""}
@ -111,7 +111,7 @@ class HTMLIngredient {
</div>`; </div>`;
break; break;
case "number": case "number":
html += `<div class="form-group inline"> html += `<div class="form-group inline ing-medium">
<label for="${this.id}" <label for="${this.id}"
${this.hint ? `data-toggle="tooltip" title="${this.hint}"` : ""} ${this.hint ? `data-toggle="tooltip" title="${this.hint}"` : ""}
class="bmd-label-floating inline">${this.name}</label> class="bmd-label-floating inline">${this.name}</label>
@ -128,7 +128,7 @@ class HTMLIngredient {
</div>`; </div>`;
break; break;
case "boolean": case "boolean":
html += `<div class="form-group inline boolean-arg"> html += `<div class="form-group inline boolean-arg ing-flexible">
<div class="checkbox"> <div class="checkbox">
<label ${this.hint ? `data-toggle="tooltip" title="${this.hint}"` : ""}> <label ${this.hint ? `data-toggle="tooltip" title="${this.hint}"` : ""}>
<input type="checkbox" <input type="checkbox"
@ -144,7 +144,7 @@ class HTMLIngredient {
</div>`; </div>`;
break; break;
case "option": case "option":
html += `<div class="form-group inline"> html += `<div class="form-group ing-medium">
<label for="${this.id}" <label for="${this.id}"
${this.hint ? `data-toggle="tooltip" title="${this.hint}"` : ""} ${this.hint ? `data-toggle="tooltip" title="${this.hint}"` : ""}
class="bmd-label-floating inline">${this.name}</label> class="bmd-label-floating inline">${this.name}</label>
@ -168,7 +168,7 @@ class HTMLIngredient {
break; break;
case "populateOption": case "populateOption":
case "populateMultiOption": case "populateMultiOption":
html += `<div class="form-group"> html += `<div class="form-group ing-medium" data-help-title="Population dropdowns" data-help="Selecting a value from this dropdown will populate some of the other ingredients for this operation with pre-canned values.">
<label for="${this.id}" <label for="${this.id}"
${this.hint ? `data-toggle="tooltip" title="${this.hint}"` : ""} ${this.hint ? `data-toggle="tooltip" title="${this.hint}"` : ""}
class="bmd-label-floating">${this.name}</label> class="bmd-label-floating">${this.name}</label>
@ -199,7 +199,7 @@ class HTMLIngredient {
this.manager.addDynamicListener("#" + this.id, "change", eventFn, this); this.manager.addDynamicListener("#" + this.id, "change", eventFn, this);
break; break;
case "editableOption": case "editableOption":
html += `<div class="form-group input-group"> html += `<div class="form-group input-group ing-wide">
<label for="${this.id}" <label for="${this.id}"
${this.hint ? `data-toggle="tooltip" title="${this.hint}"` : ""} ${this.hint ? `data-toggle="tooltip" title="${this.hint}"` : ""}
class="bmd-label-floating">${this.name}</label> class="bmd-label-floating">${this.name}</label>
@ -230,7 +230,7 @@ class HTMLIngredient {
this.manager.addDynamicListener(".editable-option-menu a", "click", this.editableOptionClick, this); this.manager.addDynamicListener(".editable-option-menu a", "click", this.editableOptionClick, this);
break; break;
case "editableOptionShort": case "editableOptionShort":
html += `<div class="form-group input-group inline"> html += `<div class="form-group input-group ing-short">
<label for="${this.id}" <label for="${this.id}"
${this.hint ? `data-toggle="tooltip" title="${this.hint}"` : ""} ${this.hint ? `data-toggle="tooltip" title="${this.hint}"` : ""}
class="bmd-label-floating inline">${this.name}</label> class="bmd-label-floating inline">${this.name}</label>
@ -261,7 +261,7 @@ class HTMLIngredient {
this.manager.addDynamicListener(".editable-option-menu a", "click", this.editableOptionClick, this); this.manager.addDynamicListener(".editable-option-menu a", "click", this.editableOptionClick, this);
break; break;
case "text": case "text":
html += `<div class="form-group"> html += `<div class="form-group ing-very-wide">
<label for="${this.id}" <label for="${this.id}"
${this.hint ? `data-toggle="tooltip" title="${this.hint}"` : ""} ${this.hint ? `data-toggle="tooltip" title="${this.hint}"` : ""}
class="bmd-label-floating">${this.name}</label> class="bmd-label-floating">${this.name}</label>
@ -275,7 +275,7 @@ class HTMLIngredient {
</div>`; </div>`;
break; break;
case "argSelector": case "argSelector":
html += `<div class="form-group inline"> html += `<div class="form-group inline ing-medium" data-help-title="Ingredient selector" data-help="Selecting options in this dropdown will configure which operation ingredients are visible.">
<label for="${this.id}" <label for="${this.id}"
${this.hint ? `data-toggle="tooltip" title="${this.hint}"` : ""} ${this.hint ? `data-toggle="tooltip" title="${this.hint}"` : ""}
class="bmd-label-floating inline">${this.name}</label> class="bmd-label-floating inline">${this.name}</label>
@ -298,7 +298,7 @@ class HTMLIngredient {
this.manager.addDynamicListener(".arg-selector", "change", this.argSelectorChange, this); this.manager.addDynamicListener(".arg-selector", "change", this.argSelectorChange, this);
break; break;
case "label": case "label":
html += `<div class="form-group"> html += `<div class="form-group ing-flexible">
<label>${this.name}</label> <label>${this.name}</label>
<input type="hidden" <input type="hidden"
class="form-control arg" class="form-control arg"

View file

@ -83,8 +83,8 @@ class HTMLOperation {
html += `</div> html += `</div>
<div class="recip-icons"> <div class="recip-icons">
<i class="material-icons breakpoint" title="Set breakpoint" break="false">pause</i> <i class="material-icons breakpoint" title="Set breakpoint" break="false" data-help-title="Setting breakpoints" data-help="Setting a breakpoint on an operation will cause execution of the Recipe to pause when it reaches that operation.">pause</i>
<i class="material-icons disable-icon" title="Disable operation" disabled="false">not_interested</i> <i class="material-icons disable-icon" title="Disable operation" disabled="false" data-help-title="Disabling operations" data-help="Disabling an operation will prevent it from being executed when the Recipe is baked. Execution will skip over the disabled operation and continue with subsequent operations.">not_interested</i>
</div> </div>
<div class="clearfix">&nbsp;</div>`; <div class="clearfix">&nbsp;</div>`;

View file

@ -17,6 +17,7 @@ import SeasonalWaiter from "./waiters/SeasonalWaiter.mjs";
import BindingsWaiter from "./waiters/BindingsWaiter.mjs"; import BindingsWaiter from "./waiters/BindingsWaiter.mjs";
import BackgroundWorkerWaiter from "./waiters/BackgroundWorkerWaiter.mjs"; import BackgroundWorkerWaiter from "./waiters/BackgroundWorkerWaiter.mjs";
import TabWaiter from "./waiters/TabWaiter.mjs"; import TabWaiter from "./waiters/TabWaiter.mjs";
import TimingWaiter from "./waiters/TimingWaiter.mjs";
/** /**
@ -59,6 +60,7 @@ class Manager {
this.statechange = new CustomEvent("statechange", {bubbles: true}); this.statechange = new CustomEvent("statechange", {bubbles: true});
// Define Waiter objects to handle various areas // Define Waiter objects to handle various areas
this.timing = new TimingWaiter(this.app, this);
this.worker = new WorkerWaiter(this.app, this); this.worker = new WorkerWaiter(this.app, this);
this.window = new WindowWaiter(this.app); this.window = new WindowWaiter(this.app);
this.controls = new ControlsWaiter(this.app, this); this.controls = new ControlsWaiter(this.app, this);
@ -93,6 +95,23 @@ class Manager {
this.bindings.updateKeybList(); this.bindings.updateKeybList();
this.background.registerChefWorker(); this.background.registerChefWorker();
this.seasonal.load(); this.seasonal.load();
this.confirmWaitersLoaded();
}
/**
* Confirms that all Waiters have loaded correctly.
*/
confirmWaitersLoaded() {
if (this.tabs.getActiveTab("input") >= 0 &&
this.tabs.getActiveTab("output") >= 0) {
log.debug("Waiters loaded");
this.app.waitersLoaded = true;
this.app.loaded();
} else {
// Not loaded yet, try again soon
setTimeout(this.confirmWaitersLoaded.bind(this), 10);
}
} }
@ -146,19 +165,14 @@ class Manager {
this.addDynamicListener("textarea.arg", "drop", this.recipe.textArgDrop, this.recipe); this.addDynamicListener("textarea.arg", "drop", this.recipe.textArgDrop, this.recipe);
// Input // Input
this.addMultiEventListener("#input-text", "keyup", this.input.debounceInputChange, this.input);
this.addMultiEventListener("#input-text", "paste", this.input.inputPaste, this.input);
document.getElementById("reset-layout").addEventListener("click", this.app.resetLayout.bind(this.app)); document.getElementById("reset-layout").addEventListener("click", this.app.resetLayout.bind(this.app));
this.addListeners("#clr-io,#btn-close-all-tabs", "click", this.input.clearAllIoClick, this.input); this.addListeners("#clr-io,#btn-close-all-tabs", "click", this.input.clearAllIoClick, this.input);
this.addListeners("#open-file,#open-folder", "change", this.input.inputOpen, this.input); this.addListeners("#open-file,#open-folder", "change", this.input.inputOpen, this.input);
this.addListeners("#input-text,#input-file", "dragover", this.input.inputDragover, this.input); document.getElementById("btn-open-file").addEventListener("click", this.input.inputOpenClick.bind(this.input));
this.addListeners("#input-text,#input-file", "dragleave", this.input.inputDragleave, this.input); document.getElementById("btn-open-folder").addEventListener("click", this.input.folderOpenClick.bind(this.input));
this.addListeners("#input-text,#input-file", "drop", this.input.inputDrop, this.input); this.addListeners("#input-wrapper", "dragover", this.input.inputDragover, this.input);
document.getElementById("input-text").addEventListener("scroll", this.highlighter.inputScroll.bind(this.highlighter)); this.addListeners("#input-wrapper", "dragleave", this.input.inputDragleave, this.input);
document.getElementById("input-text").addEventListener("mouseup", this.highlighter.inputMouseup.bind(this.highlighter)); this.addListeners("#input-wrapper", "drop", this.input.inputDrop, this.input);
document.getElementById("input-text").addEventListener("mousemove", this.highlighter.inputMousemove.bind(this.highlighter));
this.addMultiEventListener("#input-text", "mousedown dblclick select", this.highlighter.inputMousedown, this.highlighter);
document.querySelector("#input-file .close").addEventListener("click", this.input.clearIoClick.bind(this.input));
document.getElementById("btn-new-tab").addEventListener("click", this.input.addInputClick.bind(this.input)); document.getElementById("btn-new-tab").addEventListener("click", this.input.addInputClick.bind(this.input));
document.getElementById("btn-previous-input-tab").addEventListener("mousedown", this.input.previousTabClick.bind(this.input)); document.getElementById("btn-previous-input-tab").addEventListener("mousedown", this.input.previousTabClick.bind(this.input));
document.getElementById("btn-next-input-tab").addEventListener("mousedown", this.input.nextTabClick.bind(this.input)); document.getElementById("btn-next-input-tab").addEventListener("mousedown", this.input.nextTabClick.bind(this.input));
@ -177,8 +191,6 @@ class Manager {
document.getElementById("input-num-results").addEventListener("keyup", this.input.filterTabSearch.bind(this.input)); document.getElementById("input-num-results").addEventListener("keyup", this.input.filterTabSearch.bind(this.input));
document.getElementById("input-filter-refresh").addEventListener("click", this.input.filterTabSearch.bind(this.input)); document.getElementById("input-filter-refresh").addEventListener("click", this.input.filterTabSearch.bind(this.input));
this.addDynamicListener(".input-filter-result", "click", this.input.filterItemClick, this.input); this.addDynamicListener(".input-filter-result", "click", this.input.filterItemClick, this.input);
document.getElementById("btn-open-file").addEventListener("click", this.input.inputOpenClick.bind(this.input));
document.getElementById("btn-open-folder").addEventListener("click", this.input.folderOpenClick.bind(this.input));
// Output // Output
@ -186,20 +198,8 @@ class Manager {
document.getElementById("save-all-to-file").addEventListener("click", this.output.saveAllClick.bind(this.output)); document.getElementById("save-all-to-file").addEventListener("click", this.output.saveAllClick.bind(this.output));
document.getElementById("copy-output").addEventListener("click", this.output.copyClick.bind(this.output)); document.getElementById("copy-output").addEventListener("click", this.output.copyClick.bind(this.output));
document.getElementById("switch").addEventListener("click", this.output.switchClick.bind(this.output)); document.getElementById("switch").addEventListener("click", this.output.switchClick.bind(this.output));
document.getElementById("undo-switch").addEventListener("click", this.output.undoSwitchClick.bind(this.output));
document.getElementById("maximise-output").addEventListener("click", this.output.maximiseOutputClick.bind(this.output)); document.getElementById("maximise-output").addEventListener("click", this.output.maximiseOutputClick.bind(this.output));
document.getElementById("magic").addEventListener("click", this.output.magicClick.bind(this.output)); document.getElementById("magic").addEventListener("click", this.output.magicClick.bind(this.output));
document.getElementById("output-text").addEventListener("scroll", this.highlighter.outputScroll.bind(this.highlighter));
document.getElementById("output-text").addEventListener("mouseup", this.highlighter.outputMouseup.bind(this.highlighter));
document.getElementById("output-text").addEventListener("mousemove", this.highlighter.outputMousemove.bind(this.highlighter));
document.getElementById("output-html").addEventListener("mouseup", this.highlighter.outputHtmlMouseup.bind(this.highlighter));
document.getElementById("output-html").addEventListener("mousemove", this.highlighter.outputHtmlMousemove.bind(this.highlighter));
this.addMultiEventListener("#output-text", "mousedown dblclick select", this.highlighter.outputMousedown, this.highlighter);
this.addMultiEventListener("#output-html", "mousedown dblclick select", this.highlighter.outputHtmlMousedown, this.highlighter);
this.addDynamicListener("#output-file-download", "click", this.output.downloadFile, this.output);
this.addDynamicListener("#output-file-show-all", "click", this.output.showAllFile, this.output);
this.addDynamicListener("#output-file-slice i", "click", this.output.displayFileSlice, this.output);
document.getElementById("show-file-overlay").addEventListener("click", this.output.showFileOverlayClick.bind(this.output));
this.addDynamicListener(".extract-file,.extract-file i", "click", this.output.extractFileClick, this.output); this.addDynamicListener(".extract-file,.extract-file i", "click", this.output.extractFileClick, this.output);
this.addDynamicListener("#output-tabs-wrapper #output-tabs li .output-tab-content", "click", this.output.changeTabClick, this.output); this.addDynamicListener("#output-tabs-wrapper #output-tabs li .output-tab-content", "click", this.output.changeTabClick, this.output);
document.getElementById("btn-previous-output-tab").addEventListener("mousedown", this.output.previousTabClick.bind(this.output)); document.getElementById("btn-previous-output-tab").addEventListener("mousedown", this.output.previousTabClick.bind(this.output));
@ -232,7 +232,6 @@ class Manager {
this.addDynamicListener(".option-item select", "change", this.options.selectChange, this.options); this.addDynamicListener(".option-item select", "change", this.options.selectChange, this.options);
document.getElementById("theme").addEventListener("change", this.options.themeChange.bind(this.options)); document.getElementById("theme").addEventListener("change", this.options.themeChange.bind(this.options));
document.getElementById("logLevel").addEventListener("change", this.options.logLevelChange.bind(this.options)); document.getElementById("logLevel").addEventListener("change", this.options.logLevelChange.bind(this.options));
document.getElementById("imagePreview").addEventListener("change", this.input.renderFileThumb.bind(this.input));
// Misc // Misc
window.addEventListener("keydown", this.bindings.parseInput.bind(this.bindings)); window.addEventListener("keydown", this.bindings.parseInput.bind(this.bindings));

View file

@ -62,6 +62,7 @@
"Training branch predictor...", "Training branch predictor...",
"Timing cache hits...", "Timing cache hits...",
"Speculatively executing recipes..." "Speculatively executing recipes..."
"Adding LLM hallucinations..."
]; ];
// Shuffle array using Durstenfeld algorithm // Shuffle array using Durstenfeld algorithm
@ -146,7 +147,7 @@
<div id="content-wrapper"> <div id="content-wrapper">
<div id="banner" class="row"> <div id="banner" class="row">
<div class="col" style="text-align: left; padding-left: 10px;"> <div class="col" style="text-align: left; padding-left: 10px;">
<a href="CyberChef_v<%= htmlWebpackPlugin.options.version %>.zip" download>Download CyberChef <i class="material-icons">file_download</i></a> <a href="#" data-toggle="modal" data-target="#download-modal" data-help-title="Downloading CyberChef" data-help="<p>CyberChef can be downloaded to run locally or hosted within your own network. It has no server-side component so all that is required is that the ZIP file is uncompressed and the files are accessible.</p><p>As a user, it is worth noting that unofficial versions of CyberChef could have been modified to introduce Input and/or Recipe exfiltration. We recommend always using the official, open source, up-to-date version of CyberChef hosted at <a href='https://gchq.github.io/CyberChef'>https://gchq.github.io/CyberChef</a> if accessible.</p><p>The Network tab in your browser's Developer console (F12) can be used to inspect the network requests made by a website. This can confirm that no data is uploaded when a CyberChef recipe is baked.</p>">Download CyberChef <i class="material-icons">file_download</i></a>
</div> </div>
<div class="col-md-6" id="notice-wrapper"> <div class="col-md-6" id="notice-wrapper">
<span id="notice"> <span id="notice">
@ -161,29 +162,31 @@
</span> </span>
</div> </div>
<div class="col" style="text-align: right; padding-right: 0;"> <div class="col" style="text-align: right; padding-right: 0;">
<a href="#" id="options">Options <i class="material-icons">settings</i></a> <a href="#" id="options" data-help-title="Options and Settings" data-help="Configurable options to change how CyberChef behaves. These settings are stored in your browser's local storage, meaning they will persist between sessions that use the same browser profile.">Options <i class="material-icons">settings</i></a>
<a href="#" id="support" data-toggle="modal" data-target="#support-modal">About / Support <i class="material-icons">help</i></a> <a href="#" id="support" data-toggle="modal" data-target="#support-modal" data-help-title="About / Support" data-help="This pane provides information about the CyberChef web app, how to use some of the features, and how to raise bug reports.">About / Support <i class="material-icons">help</i></a>
</div> </div>
</div> </div>
<div id="workspace-wrapper"> <div id="workspace-wrapper">
<div id="operations" class="split split-horizontal no-select"> <div id="operations" class="split split-horizontal no-select">
<div class="title no-select">Operations</div> <div class="title no-select" data-help-title="Operations list" data-help="<p>The Operations list contains all the operations in CyberChef arranged into categories. Some operations may be present in multiple categories. You can search for operations using the search box.</p><p>To use an operation, either double click it, or drag it into the Recipe pane. You will then be able to configure its arguments (or 'Ingredients' in CyberChef terminology).</p>">
<input id="search" type="search" class="form-control" placeholder="Search..." autocomplete="off" tabindex="2"> Operations
</div>
<input id="search" type="search" class="form-control" placeholder="Search..." autocomplete="off" tabindex="2" data-help-title="Searching for operations" data-help="<p>Use the search box to find useful operations.</p><p>Both operation names and descriptions are queried using a fuzzy matching algorithm.</p>">
<ul id="search-results" class="op-list"></ul> <ul id="search-results" class="op-list"></ul>
<div id="categories" class="panel-group no-select"></div> <div id="categories" class="panel-group no-select"></div>
</div> </div>
<div id="recipe" class="split split-horizontal no-select"> <div id="recipe" class="split split-horizontal no-select" data-help-title="Recipe pane" data-help="<p>The Recipe pane is where your chosen Operations are configured. If you are a programmer, think of these as functions. If you are not a programmer, these are like steps in a cake recipe. The Input data will be processed based on the Operations in your Recipe.</p><ul><li>To reorder, simply drag and drop the Operations into the order your require</li><li>To remove an operation, either double click it, or drag it outside of the Recipe pane</li></ul><p>The arguments (or 'Ingredients' in CyberChef terminology) can be configured to change how an Operation processes the data.</p>">
<div class="title no-select"> <div class="title no-select">
Recipe Recipe
<span class="pane-controls hide-on-maximised-output"> <span class="pane-controls hide-on-maximised-output">
<button type="button" class="btn btn-primary bmd-btn-icon" id="save" data-toggle="tooltip" title="Save recipe"> <button type="button" class="btn btn-primary bmd-btn-icon" id="save" data-toggle="tooltip" title="Save recipe" data-help-title="Saving a recipe" data-help="<p>Recipes can be represented in a few different formats and saved for use at a later date. You can either copy the Recipe configuration and save it somewhere offline for later use, or use your browser's local storage.</p><ul><li><b>Deep link:</b> The easiest way to share a CyberChef Recipe is to copy the deep link, either from the address bar (which is updated as the Recipe or Input changes), or from the 'Save recipe' pane. When you visit this link, the Recipe and Input should be populated from where you left off.</li><li><b>Chef format:</b> This custom format is designed to be compact and easily readable. It is the format used in CyberChef's URL, so it largely uses characters that do not have to be escaped in URL encoding, making it a little easier to understand what a CyberChef URL contains.</li><li><b>Clean JSON:</b> This JSON format uses whitespace and indentation in a way that makes the Recipe easy to read.</li><li><b>Compact JSON:</b> This is the most compact way that the Recipe can be represented in JSON.</li><li><b>Local storage:</b> Alternatively, you can enter a name into the 'Recipe name' field and save to your browser's local storage. The Recipe will then be available to load from the 'Load Recipe' pane as long as you are using the same browser profile. Be aware that if your browser profile is cleaned, you may lose this data.</li></ul>">
<i class="material-icons">save</i> <i class="material-icons">save</i>
</button> </button>
<button type="button" class="btn btn-primary bmd-btn-icon" id="load" data-toggle="tooltip" title="Load recipe"> <button type="button" class="btn btn-primary bmd-btn-icon" id="load" data-toggle="tooltip" title="Load recipe" data-help-title="Loading a recipe" data-help="<p>Saved recipes can be loaded using one of the following methods:</p><ul><li>If you have a CyberChef deep link, simply visit that link and the Recipe and Input should be populated automatically.</li><li>If you have a Recipe string in any of the accepted formats, paste it into the 'Load recipe' pane textbox and click 'Load'.</li><li>If you have saved a Recipe to your browser's local storage, it should be available in the dropdown menu in the 'Load recipe' pane. If it is not there, you may not be using the same browser profile, or your profile may have been cleared.</li></ul>">
<i class="material-icons">folder</i> <i class="material-icons">folder</i>
</button> </button>
<button type="button" class="btn btn-primary bmd-btn-icon" id="clr-recipe" data-toggle="tooltip" title="Clear recipe"> <button type="button" class="btn btn-primary bmd-btn-icon" id="clr-recipe" data-toggle="tooltip" title="Clear recipe" data-help-title="Clearing a recipe" data-help="Clicking the 'Clear recipe' button will remove all operations from the Recipe. It will not clear the Input, but it will trigger a Bake if Auto-bake is turned on, which will change the value of the Output.">
<i class="material-icons">delete</i> <i class="material-icons">delete</i>
</button> </button>
</span> </span>
@ -191,18 +194,18 @@
<ul id="rec-list" class="list-area no-select"></ul> <ul id="rec-list" class="list-area no-select"></ul>
<div id="controls" class="no-select hide-on-maximised-output"> <div id="controls" class="no-select hide-on-maximised-output">
<div id="controls-content" class="d-flex align-items-center"> <div id="controls-content">
<button type="button" class="mx-2 btn btn-lg btn-secondary" id="step" data-toggle="tooltip" title="Step through the recipe"> <button type="button" class="mx-2 btn btn-lg btn-secondary" id="step" data-toggle="tooltip" title="Step through the recipe" data-help-title="Stepping through the Recipe" data-help="<p>The Step button allows you to execute one operation at a time, rather than running the whole Recipe from beginning to end.</p><p>Step allows you to inspect the data at each stage of the Recipe and understand what is being passed to the next operation.</p>">
Step Step
</button> </button>
<button type="button" class="mx-2 btn btn-lg btn-success btn-raised btn-block" id="bake"> <button type="button" class="mx-2 btn btn-lg btn-success btn-raised btn-block" id="bake" data-help-title="Baking" data-help="<p>Baking causes CyberChef to run the Recipe against your data. This involves three steps:</p><ol><li>The data in the Input is encoded into bytes using the character encoding selected in the Input status bar.</li><li>The data is run through each of the operations in the Recipe in turn with the output of one operation being fed into the next operation as its input.</li><li>The outcome of the final operation in the Recipe is decoded into Output text using the character encoding selected in the Output status bar.</li></ol><p>If there are multiple Inputs, the Bake button causes every Input to be baked simultaneously.</p>">
<img aria-hidden="true" src="<%- require('../static/images/cook_male-32x32.png') %>" alt="Chef Icon"/> <img aria-hidden="true" src="<%- require('../static/images/cook_male-32x32.png') %>" alt="Chef Icon"/>
<span>Bake!</span> <span>Bake!</span>
</button> </button>
<div class="form-group" style="display: contents;"> <div class="form-group" style="display: contents;">
<div class="mx-1 checkbox"> <div class="mx-1 checkbox" data-help-title="Auto-bake" data-help="<p>When Auto-bake is turned on, CyberChef will bake the Input using the Recipe whenever anything in the Input or Recipe changes.</p>This includes:<ul><li>Adding or removing operations</li><li>Modifying operation arguments</li><li>Editing the Input</li><li>Changing the Input character encoding</li></ul><p>If there are multiple inputs, only the currently active tab will be baked when Auto-bake triggers. You can bake all inputs manually using the Bake button.</p>">
<label id="auto-bake-label"> <label id="auto-bake-label">
<input type="checkbox" checked="checked" id="auto-bake"> <input type="checkbox" checked="checked" id="auto-bake">
<br>Auto Bake <br>Auto Bake
@ -214,115 +217,93 @@
</div> </div>
<div class="split split-horizontal" id="IO"> <div class="split split-horizontal" id="IO">
<div id="input" class="split no-select"> <div id="input" class="split no-select" data-help-title="Input pane" data-help="<p>Input data can be entered by typing it in, pasting it in, dragging it in, or using the 'Load file' or 'Load folder' buttons.</p><p>CyberChef does its best to represent data as accurately as possible to ensure you know exactly what you are working with. Non-printable characters are represented using control character pictures, for example a null byte (0x00) is displayed like this: <span title='Control character null' aria-label='Control character null' class='cm-specialChar'>␀</span>.</p>">
<div class="title no-select"> <div class="title no-select">
<label for="input-text">Input</label> <label for="input-text">Input</label>
<span class="pane-controls"> <span class="pane-controls">
<div class="io-info" id="input-files-info"></div> <div class="io-info" id="input-files-info"></div>
<div class="io-info" id="input-selection-info"></div> <button type="button" class="btn btn-primary bmd-btn-icon" id="btn-new-tab" data-toggle="tooltip" title="Add a new input tab" data-help-title="Tabs" data-help="<p>New tabs can be created to support multiple Inputs. These tabs have their own associated character encodings and EOL separators, as defined in their status bars.</p><p>The deep link in the URL bar only contains information about the currently active tab.</p>">
<div class="io-info" id="input-info"></div>
<button type="button" class="btn btn-primary bmd-btn-icon" id="btn-new-tab" data-toggle="tooltip" title="Add a new input tab">
<i class="material-icons">add</i> <i class="material-icons">add</i>
</button> </button>
<button type="button" class="btn btn-primary bmd-btn-icon" id="btn-open-folder" data-toggle="tooltip" title="Open folder as input"> <button type="button" class="btn btn-primary bmd-btn-icon" id="btn-open-folder" data-toggle="tooltip" title="Open folder as input" data-help-title="Opening a folder" data-help="<p>You can open a whole folder into CyberChef, which will result in each file being loaded into a separate Input tab.</p><p>CyberChef can handle lots of Input files, but be aware that performance may suffer, especially if the files are large in size.</p><p>Folders can also be loaded by dragging them over the Input pane and dropping them.</p>">
<i class="material-icons">folder_open</i> <i class="material-icons">folder_open</i>
<input type="file" id="open-folder" style="display: none" multiple directory webkitdirectory> <input type="file" id="open-folder" style="display: none" multiple directory webkitdirectory>
</button> </button>
<button type="button" class="btn btn-primary bmd-btn-icon" id="btn-open-file" data-toggle="tooltip" title="Open file as input"> <button type="button" class="btn btn-primary bmd-btn-icon" id="btn-open-file" data-toggle="tooltip" title="Open file as input" data-help-title="Opening a file" data-help="<p>Files can be loaded into CyberChef individually or in groups, either using the 'Open file as input' button, or by dragging and dropping them over the Input pane.</p><p>CyberChef can handle reasonably large files (at least 500MB, depending on hardware), but performance may be impacted and some Operations will run very slowly over large Inputs.</p>">
<i class="material-icons">input</i> <i class="material-icons">input</i>
<input type="file" id="open-file" style="display: none" multiple> <input type="file" id="open-file" style="display: none" multiple>
</button> </button>
<button type="button" class="btn btn-primary bmd-btn-icon" id="clr-io" data-toggle="tooltip" title="Clear input and output"> <button type="button" class="btn btn-primary bmd-btn-icon" id="clr-io" data-toggle="tooltip" title="Clear input and output" data-help-title="Clearing the Input and Output" data-help="Clicking the 'Clear input and output' button will remove all Inputs and Outputs. It will not clear the Recipe.">
<i class="material-icons">delete</i> <i class="material-icons">delete</i>
</button> </button>
<button type="button" class="btn btn-primary bmd-btn-icon" id="reset-layout" data-toggle="tooltip" title="Reset pane layout"> <button type="button" class="btn btn-primary bmd-btn-icon" id="reset-layout" data-toggle="tooltip" title="Reset pane layout" data-help-title="Resetting the pane layout" data-help="CyberChef's panes can be resized to suit your area of focus. This button will reset the pane sizes to their default configuration.">
<i class="material-icons">view_compact</i> <i class="material-icons">view_compact</i>
</button> </button>
</span> </span>
</div>
</div> <div id="input-wrapper" class="no-select">
<div id="input-tabs-wrapper" style="display: none;" class="no-select"> <div id="input-tabs-wrapper" style="display: none;" class="no-select" data-help-proxy="#btn-new-tab">
<span id="btn-previous-input-tab" class="input-tab-buttons"> <span id="btn-previous-input-tab" class="input-tab-buttons">
&lt; &lt;
</span> </span>
<span id="btn-input-tab-dropdown" class="input-tab-buttons" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> <span id="btn-input-tab-dropdown" class="input-tab-buttons" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
··· ···
</span> </span>
<div class="dropdown-menu" aria-labelledby="btn-input-tab-dropdown"> <div class="dropdown-menu" aria-labelledby="btn-input-tab-dropdown">
<a id="btn-go-to-input-tab" class="dropdown-item"> <a id="btn-go-to-input-tab" class="dropdown-item">
Go to tab Go to tab
</a> </a>
<a id="btn-find-input-tab" class="dropdown-item"> <a id="btn-find-input-tab" class="dropdown-item">
Find tab Find tab
</a> </a>
<a id="btn-close-all-tabs" class="dropdown-item"> <a id="btn-close-all-tabs" class="dropdown-item">
Close all tabs Close all tabs
</a> </a>
</div>
<span id="btn-next-input-tab" class="input-tab-buttons">
&gt;
</span>
<ul id="input-tabs">
</ul>
</div>
<div class="textarea-wrapper no-select input-wrapper" id="input-wrapper">
<div id="input-highlighter" class="no-select"></div>
<textarea id="input-text" class="input-text" spellcheck="false" tabindex="1" autofocus></textarea>
<div class="input-file" id="input-file">
<div class="file-overlay" id="file-overlay"></div>
<div style="position: relative; height: 100%;">
<div class="io-card card">
<img aria-hidden="true" src="<%- require('../static/images/file-128x128.png') %>" alt="File icon" id="input-file-thumbnail"/>
<div class="card-body">
<button type="button" class="close" id="input-file-close">&times;</button>
Name: <span id="input-file-name"></span><br>
Size: <span id="input-file-size"></span><br>
Type: <span id="input-file-type"></span><br>
Loaded: <span id="input-file-loaded"></span>
</div>
</div>
</div> </div>
<span id="btn-next-input-tab" class="input-tab-buttons">
&gt;
</span>
<ul id="input-tabs">
</ul>
</div> </div>
<div id="input-text"></div>
</div> </div>
</div> </div>
<div id="output" class="split"> <div id="output" class="split" data-help-title="Output pane" data-help="<p>This pane displays the results of the Recipe after it has processed your Input.</p><p>CyberChef does its best to represent data as accurately as possible to ensure you know exactly what you are working with. Non-printable characters are represented using control character pictures, for example a null byte (0x00) is displayed like this: <span title='Control character null' aria-label='Control character null' class='cm-specialChar'>␀</span>.</p><p>When copying these characters from the Output, the original byte value should be copied into your clipboard, rather than the control character picture itself.</p>">
<div class="title no-select"> <div class="title no-select">
<label for="output-text">Output</label> <label for="output-text">Output</label>
<span class="pane-controls"> <span class="pane-controls">
<div class="io-info" id="bake-info"></div> <div class="io-info" id="bake-info"></div>
<div class="io-info" id="output-selection-info"></div> <button type="button" class="btn btn-primary bmd-btn-icon" id="save-all-to-file" data-toggle="tooltip" title="Save all outputs to a zip file" style="display: none" data-help-title="Saving all outputs to a zip file" data-help="<p>When operating with multiple tabbed Inputs and Outputs, you can use this button to save off all the Outputs at once in a ZIP file.</p><p>Use the 'Bake' button to bake all Inputs at once.</p><p>You will be given the choice to specify the file extension for the Outputs, or you can let CyberChef attempt to detect the filetype of each one. If an Output's type is not clear, CyberChef will use the '.dat' extension.</p>">
<div class="io-info" id="output-info"></div>
<button type="button" class="btn btn-primary bmd-btn-icon" id="save-all-to-file" data-toggle="tooltip" title="Save all outputs to a zip file" style="display: none">
<i class="material-icons">archive</i> <i class="material-icons">archive</i>
</button> </button>
<button type="button" class="btn btn-primary bmd-btn-icon" id="save-to-file" data-toggle="tooltip" title="Save output to file"> <button type="button" class="btn btn-primary bmd-btn-icon" id="save-to-file" data-toggle="tooltip" title="Save output to file" data-help-title="Saving output to a file" data-help="The currently active Output can be saved to a file. You will be asked to specify a filename. CyberChef will attempt to guess the correct file extension based on the data. If a file type cannot be detected, the extension defaults to '.dat' but can be changed manually.">
<i class="material-icons">save</i> <i class="material-icons">save</i>
</button> </button>
<button type="button" class="btn btn-primary bmd-btn-icon" id="copy-output" data-toggle="tooltip" title="Copy raw output to the clipboard"> <button type="button" class="btn btn-primary bmd-btn-icon" id="copy-output" data-toggle="tooltip" title="Copy raw output to the clipboard" data-help-title="Copying raw output to the clipboard" data-help="<p>Data can be copied from the Output in the normal way by selecting text and copying it. This button provides a quick way of copying the entire output to the clipboard without having to select it. It directly copies the raw data rather than selecting text in the Output editor. Each method should have the same result, but the button may be more efficient for large Outputs as it does not require any DOM interaction.</p>">
<i class="material-icons">content_copy</i> <i class="material-icons">content_copy</i>
</button> </button>
<button type="button" class="btn btn-primary bmd-btn-icon" id="switch" data-toggle="tooltip" title="Replace input with output"> <button type="button" class="btn btn-primary bmd-btn-icon" id="switch" data-toggle="tooltip" title="Replace input with output" data-help-title="Replacing input with output" data-help="<p>This button moves the currently active Output data into the currently active Input tab, overwriting whatever data was already there.</p><p>The Input character encoding and EOL sequence will be changed to match the current Output values, so that the data is interpreted correctly.</p>">
<i class="material-icons">open_in_browser</i> <i class="material-icons">open_in_browser</i>
</button> </button>
<button type="button" class="btn btn-primary bmd-btn-icon" id="undo-switch" data-toggle="tooltip" title="Undo" disabled="disabled"> <button type="button" class="btn btn-primary bmd-btn-icon" id="maximise-output" data-toggle="tooltip" title="Maximise output pane" data-help-title="Maximising the Output pane" data-help="This button allows you to view the Output pane at maximum size, hiding the Operations, Recipe and Input panes. You can restore the pane to its normal size by clicking the same button again.">
<i class="material-icons">undo</i>
</button>
<button type="button" class="btn btn-primary bmd-btn-icon" id="maximise-output" data-toggle="tooltip" title="Maximise output pane">
<i class="material-icons">fullscreen</i> <i class="material-icons">fullscreen</i>
</button> </button>
</span> </span>
<button type="button" class="btn btn-primary bmd-btn-icon hidden" id="magic" data-toggle="tooltip" title="Magic!" data-html="true"> <button type="button" class="btn btn-primary bmd-btn-icon hidden" id="magic" data-toggle="tooltip" title="Magic!" data-html="true" data-help-title="CyberChef Magic!" data-help="<p>One of CyberChef's best features is its ability to automatically detect which Operations might make more sense of your data. The Magic button appears when CyberChef has a suggested Operation for you based on the data in the Output.</p><p>Clicking on the button will add the suggested Operation(s) to your Recipe.</p><p>This background Magic detection will inspect your Output up to three levels deep and attempt to unwrap it using a range of techniques. For more control, use the 'Magic' operation, which allows you to configure greater depth and filter based on various parameters.</p><p>Further information about CyberChef Magic can be found <a href='https://github.com/gchq/CyberChef/wiki/Automatic-detection-of-encoded-data-using-CyberChef-Magic'>here</a>.</p>">
<svg width="22" height="22" viewBox="0 0 24 24"> <svg width="22" height="22" viewBox="0 0 24 24">
<path d="M7.5,5.6L5,7L6.4,4.5L5,2L7.5,3.4L10,2L8.6,4.5L10,7L7.5,5.6M19.5,15.4L22,14L20.6,16.5L22,19L19.5,17.6L17,19L18.4,16.5L17,14L19.5,15.4M22,2L20.6,4.5L22,7L19.5,5.6L17,7L18.4,4.5L17,2L19.5,3.4L22,2M13.34,12.78L15.78,10.34L13.66,8.22L11.22,10.66L13.34,12.78M14.37,7.29L16.71,9.63C17.1,10 17.1,10.65 16.71,11.04L5.04,22.71C4.65,23.1 4,23.1 3.63,22.71L1.29,20.37C0.9,20 0.9,19.35 1.29,18.96L12.96,7.29C13.35,6.9 14,6.9 14.37,7.29Z" /> <path d="M7.5,5.6L5,7L6.4,4.5L5,2L7.5,3.4L10,2L8.6,4.5L10,7L7.5,5.6M19.5,15.4L22,14L20.6,16.5L22,19L19.5,17.6L17,19L18.4,16.5L17,14L19.5,15.4M22,2L20.6,4.5L22,7L19.5,5.6L17,7L18.4,4.5L17,2L19.5,3.4L22,2M13.34,12.78L15.78,10.34L13.66,8.22L11.22,10.66L13.34,12.78M14.37,7.29L16.71,9.63C17.1,10 17.1,10.65 16.71,11.04L5.04,22.71C4.65,23.1 4,23.1 3.63,22.71L1.29,20.37C0.9,20 0.9,19.35 1.29,18.96L12.96,7.29C13.35,6.9 14,6.9 14.37,7.29Z" />
</svg> </svg>
</button> </button>
<span id="stale-indicator" class="hidden" data-toggle="tooltip" title="The output is stale. The input or recipe has changed since this output was generated. Bake again to get the new value."> <span id="stale-indicator" class="hidden" data-toggle="tooltip" title="The output is stale. The input or recipe has changed since this output was generated. Bake again to get the new value." data-help-title="Staleness indicator" data-help="The staleness indicator is displayed when the Recipe or Input has changed but the Output has not yet been updated to reflect this. It is most commonly displayed when Auto-bake is turned off and indicates that you need to Bake in order to see an accurate Output.">
<i class="material-icons">access_time</i> <i class="material-icons">access_time</i>
</span> </span>
</div> </div>
<div id="output-wrapper">
<div id="output-wrapper" class="no-select">
<div id="output-tabs-wrapper" style="display: none" class="no-select"> <div id="output-tabs-wrapper" style="display: none" class="no-select">
<span id="btn-previous-output-tab" class="output-tab-buttons"> <span id="btn-previous-output-tab" class="output-tab-buttons">
&lt; &lt;
@ -344,41 +325,12 @@
<ul id="output-tabs"> <ul id="output-tabs">
</ul> </ul>
</div> </div>
<div class="textarea-wrapper"> <div id="output-text"></div>
<div id="output-highlighter" class="no-select"></div> <div id="output-loader">
<div id="output-html"></div> <div id="output-loader-animation">
<textarea id="output-text" readonly="readonly" spellcheck="false"></textarea> <object id="bombe" data="<%- require('../static/images/bombe.svg') %>" width="100%" height="100%" data-help-title="Loading animation" data-help="This loading animation shows an accurate representation of how rotors moved on The Bombe, an electro-mechanical device built at Bletchley Park in 1939 by Alan Turing with refinements by Gordon Welchman in 1940. The Bombe was used by the Government Code and Cipher School (the precursor to GCHQ) to discover daily settings of Enigma machines used by the German military in World War 2.<br><br>More information can be found on <a href='https://wikipedia.org/wiki/Bombe'>Wikipedia</a>."></object>
<img id="show-file-overlay" aria-hidden="true" src="<%- require('../static/images/file-32x32.png') %>" alt="Show file overlay" title="Show file overlay"/>
<div id="output-file">
<div class="file-overlay"></div>
<div style="position: relative; height: 100%;">
<div class="io-card card">
<img aria-hidden="true" src="<%- require('../static/images/file-128x128.png') %>" alt="File icon"/>
<div class="card-body">
Size: <span id="output-file-size"></span><br>
<button id="output-file-download" type="button" class="btn btn-primary btn-outline">Download</button>
<button id="output-file-show-all" type="button" class="btn btn-warning btn-outline" data-toggle="tooltip" title="Warning: This could crash your browser. Use at your own risk.">Show all</button>
<div class="input-group">
<span class="input-group-prepend">
<button id="output-file-slice" type="button" class="btn btn-secondary bmd-btn-icon" data-toggle="tooltip" title="View slice">
<i class="material-icons">search</i>
</button>
</span>
<input type="number" class="form-control" id="output-file-slice-from" placeholder="From" value="0" step="128" min="0">
<div class="input-group-addon">to</div>
<input type="number" class="form-control" id="output-file-slice-to" placeholder="To" value="256" step="128" min="0">
<div class="input-group-addon">KiB</div>
</div>
</div>
</div>
</div>
</div>
<div id="output-loader">
<div id="output-loader-animation">
<object id="bombe" data="<%- require('../static/images/bombe.svg') %>" width="100%" height="100%"></object>
</div>
<div class="loading-msg"></div>
</div> </div>
<div class="loading-msg"></div>
</div> </div>
</div> </div>
</div> </div>
@ -388,7 +340,7 @@
<div class="modal fade" id="save-modal" tabindex="-1" role="dialog"> <div class="modal fade" id="save-modal" tabindex="-1" role="dialog">
<div class="modal-dialog modal-lg" role="document"> <div class="modal-dialog modal-lg" role="document">
<div class="modal-content"> <div class="modal-content" data-help-proxy="#save">
<div class="modal-header"> <div class="modal-header">
<h5 class="modal-title">Save recipe</h5> <h5 class="modal-title">Save recipe</h5>
</div> </div>
@ -429,7 +381,7 @@
</div> </div>
<div class="modal-body"> <div class="modal-body">
<div class="form-group" id="save-link-group"> <div class="form-group" id="save-link-group">
<h6 style="display: inline">Data link</h6> <h6 style="display: inline">Deep link</h6>
<div class="save-link-options"> <div class="save-link-options">
<label class="checkbox-inline"> <label class="checkbox-inline">
<input type="checkbox" id="save-link-recipe-checkbox" checked> Include recipe <input type="checkbox" id="save-link-recipe-checkbox" checked> Include recipe
@ -448,7 +400,7 @@
<div class="modal fade" id="load-modal" tabindex="-1" role="dialog"> <div class="modal fade" id="load-modal" tabindex="-1" role="dialog">
<div class="modal-dialog modal-lg" role="document"> <div class="modal-dialog modal-lg" role="document">
<div class="modal-content"> <div class="modal-content" data-help-proxy="#load">
<div class="modal-header"> <div class="modal-header">
<h5 class="modal-title">Load recipe</h5> <h5 class="modal-title">Load recipe</h5>
</div> </div>
@ -475,7 +427,7 @@
<div class="modal fade" id="options-modal" tabindex="-1" role="dialog"> <div class="modal fade" id="options-modal" tabindex="-1" role="dialog">
<div class="modal-dialog modal-lg" role="document"> <div class="modal-dialog modal-lg" role="document">
<div class="modal-content"> <div class="modal-content" data-help-proxy="#options">
<div class="modal-header"> <div class="modal-header">
<h5 class="modal-title">Options</h5> <h5 class="modal-title">Options</h5>
</div> </div>
@ -493,25 +445,6 @@
</select> </select>
</div> </div>
<div class="form-group option-item">
<label for="preserveCR" class="bmd-label-floating"> Preserve carriage returns (0x0d)</label>
<select class="form-control" option="preserveCR" id="preserveCR" data-toggle="tooltip" data-placement="bottom" data-offset="-10%" data-html="true" title="HTML textareas don't support carriage returns, so if we want to preserve them in our input, we have to disable editing.<br><br>The default option is to only do this for high-entropy inputs, but you can force the choice using this dropdown.">
<option value="entropy">For high-entropy inputs</option>
<option value="always">Always</option>
<option value="never">Never</option>
</select>
</div>
<div class="form-group option-item">
<label for="errorTimeout" class="bmd-label-floating">Operation error timeout in ms (0 for never)</label>
<input type="number" class="form-control" option="errorTimeout" id="errorTimeout">
</div>
<div class="form-group option-item">
<label for="ioDisplayThreshold" class="bmd-label-floating">Size threshold for treating the input and output as a file (KiB)</label>
<input type="number" class="form-control" option="ioDisplayThreshold" id="ioDisplayThreshold">
</div>
<div class="form-group option-item"> <div class="form-group option-item">
<label for="logLevel" class="bmd-label-floating">Console logging level</label> <label for="logLevel" class="bmd-label-floating">Console logging level</label>
<select class="form-control" option="logLevel" id="logLevel"> <select class="form-control" option="logLevel" id="logLevel">
@ -538,13 +471,6 @@
</label> </label>
</div> </div>
<div class="checkbox option-item">
<label for="treatAsUtf8">
<input type="checkbox" option="treatAsUtf8" id="treatAsUtf8" checked>
Treat output as UTF-8 if possible
</label>
</div>
<div class="checkbox option-item"> <div class="checkbox option-item">
<label for="wordWrap"> <label for="wordWrap">
<input type="checkbox" option="wordWrap" id="wordWrap" checked> <input type="checkbox" option="wordWrap" id="wordWrap" checked>
@ -552,13 +478,18 @@
</label> </label>
</div> </div>
<div class="checkbox option-item"> <div class="checkbox option-item mb-0">
<label for="showErrors"> <label for="showErrors">
<input type="checkbox" option="showErrors" id="showErrors" checked> <input type="checkbox" option="showErrors" id="showErrors" checked>
Operation error reporting (recommended) Show errors from operations (recommended)
</label> </label>
</div> </div>
<div class="form-group option-item">
<label for="errorTimeout" class="bmd-label-floating">Operation error timeout in ms (0 for never)</label>
<input type="number" class="form-control" option="errorTimeout" id="errorTimeout">
</div>
<div class="checkbox option-item"> <div class="checkbox option-item">
<label for="useMetaKey"> <label for="useMetaKey">
<input type="checkbox" option="useMetaKey" id="useMetaKey"> <input type="checkbox" option="useMetaKey" id="useMetaKey">
@ -597,15 +528,15 @@
<div class="modal fade" id="favourites-modal" tabindex="-1" role="dialog"> <div class="modal fade" id="favourites-modal" tabindex="-1" role="dialog">
<div class="modal-dialog modal-lg" role="document"> <div class="modal-dialog modal-lg" role="document">
<div class="modal-content"> <div class="modal-content" data-help-proxy="a[data-target='#catFavourites']">
<div class="modal-header"> <div class="modal-header">
<h5 class="modal-title">Edit Favourites</h5> <h5 class="modal-title">Edit Favourites</h5>
</div> </div>
<div class="modal-body" id="favourites-body"> <div class="modal-body" id="favourites-body">
<ul> <ul>
<li><span style="font-weight: bold">To add:</span> drag the operation over the favourites category</li> <li><span style="font-weight: bold">To add:</span> drag the operation over the favourites category and drop it</li>
<li><span style="font-weight: bold">To reorder:</span> drag up and down in the list below</li> <li><span style="font-weight: bold">To reorder:</span> drag up and down in the list below</li>
<li><span style="font-weight: bold">To remove:</span> hit the red cross or drag out of the list below</li> <li><span style="font-weight: bold">To remove:</span> hit the delete button or drag out of the list below</li>
</ul> </ul>
<br> <br>
<ul id="edit-favourites-list" class="op-list"></ul> <ul id="edit-favourites-list" class="op-list"></ul>
@ -623,7 +554,7 @@
<div class="modal fade" id="support-modal" tabindex="-1" role="dialog"> <div class="modal fade" id="support-modal" tabindex="-1" role="dialog">
<div class="modal-dialog modal-lg" role="document"> <div class="modal-dialog modal-lg" role="document">
<div class="modal-content"> <div class="modal-content" data-help-proxy="#support">
<div class="modal-header"> <div class="modal-header">
<h5 class="modal-title">CyberChef - The Cyber Swiss Army Knife</h5> <h5 class="modal-title">CyberChef - The Cyber Swiss Army Knife</h5>
</div> </div>
@ -662,8 +593,16 @@
</li> </li>
</ul> </ul>
<div class="tab-content"> <div class="tab-content">
<div role="tabpanel" class="tab-pane active" id="faqs"> <div role="tabpanel" class="tab-pane active" id="faqs" data-help-title="FAQ pane" data-help="The Frequently Asked Questions pane provides answers to some of the most common queries people have about CyberChef.">
<br> <br>
<a class="btn btn-primary" data-toggle="collapse" data-target="#faq-contextual-help">
How does X feature work?
</a>
<div class="collapse" id="faq-contextual-help">
<p>CyberChef has a contextual help feature. Just hover your cursor over a feature that you want to learn more about and press <code>F1</code> on your keyboard to get some information about it. Give it a try by hovering over this text and pressing <code>F1</code> now!</code></p>
</div>
<br>
<a class="btn btn-primary" data-toggle="collapse" data-target="#faq-examples"> <a class="btn btn-primary" data-toggle="collapse" data-target="#faq-examples">
What sort of things can I do with CyberChef? What sort of things can I do with CyberChef?
</a> </a>
@ -896,5 +835,63 @@
</div> </div>
</div> </div>
</div> </div>
<div class="modal fade" id="download-modal" tabindex="-1" role="dialog">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content" data-help-proxy="a[data-target='#download-modal']">
<div class="modal-header">
<h5 class="modal-title">Download CyberChef</h5>
</div>
<div class="modal-body">
<p>
CyberChef runs entirely within your browser with no server-side component, meaning that your Input data and Recipe configuration are not sent anywhere, whether you use the live, official version of CyberChef or a downloaded, standalone version (assuming it is unmodified).
</p>
<p>
There are three operations that make calls to external services, those being the 'Show on map' operation which downloads map tiles from wikimedia.org, the 'DNS over HTTPS' operation which resolves DNS requests using either Google or Cloudflare services, and the 'HTTP request' operation that calls out to the configured URL you enter. You can confirm what network requests are made using your browser's developer console (F12) and viewing the Network tab.
</p>
<p>
If you would like to download your own standalone copy of CyberChef to run in a segregated network or where there is limited or no Internet connectivity, you can get a ZIP file containing the whole web app below. This can be run locally or hosted on a web server with no configuration required.
</p>
<p>
Be aware that the standalone version will never update itself, meaning it will not receive bug fixes or new features until you re-download newer versions manually.
</p>
<h6>CyberChef v<%= htmlWebpackPlugin.options.version %></h6>
<ul>
<li>Build time: <%= htmlWebpackPlugin.options.compileTime %></li>
<li>The changelog for this version can be viewed <a href="https://github.com/gchq/CyberChef/blob/master/CHANGELOG.md">here</a></li>
<li>&copy; Crown Copyright 2016</li>
<li>Released under the Apache Licence, Version 2.0</li>
<li>SHA256 hash: DOWNLOAD_HASH_PLACEHOLDER</li>
</ul>
<a href="CyberChef_v<%= htmlWebpackPlugin.options.version %>.zip" download class="btn btn-outline-primary">Download ZIP file</a>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary" data-dismiss="modal">Ok</button>
</div>
</div>
</div>
</div>
<!-- The Help modal should be last to ensure it has the highest z-index -->
<div class="modal fade" id="help-modal" tabindex="-1" role="dialog">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">
<i class="material-icons modal-icon">info_outline</i>
<span id="help-title"></span>
</h5>
</div>
<div class="modal-body">
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary" id="help-ok" data-dismiss="modal">Ok</button>
</div>
</div>
</div>
</div>
</body> </body>
</html> </html>

View file

@ -42,19 +42,16 @@ function main() {
const defaultOptions = { const defaultOptions = {
updateUrl: true, updateUrl: true,
showHighlighter: true, showHighlighter: true,
treatAsUtf8: true,
wordWrap: true, wordWrap: true,
showErrors: true, showErrors: true,
errorTimeout: 4000, errorTimeout: 4000,
attemptHighlight: true, attemptHighlight: true,
theme: "classic", theme: "classic",
useMetaKey: false, useMetaKey: false,
ioDisplayThreshold: 2048,
logLevel: "info", logLevel: "info",
autoMagic: true, autoMagic: true,
imagePreview: true, imagePreview: true,
syncTabs: true, syncTabs: true
preserveCR: "entropy"
}; };
document.removeEventListener("DOMContentLoaded", main, false); document.removeEventListener("DOMContentLoaded", main, false);

Binary file not shown.

View file

@ -1,18 +1,12 @@
<!-- Begin Google Analytics --> <!-- Begin Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-G9R4C1H8SR"></script>
<script> <script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ window.dataLayer = window.dataLayer || [];
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), function gtag(){dataLayer.push(arguments);}
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) gtag('js', new Date());
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga'); gtag('config', 'G-G9R4C1H8SR');
ga('create', 'UA-85682716-2', 'auto');
// Specifying location.pathname here overrides the default URL which could include arguments.
// This method prevents Google Analytics from logging any recipe or input data in the URL.
ga('send', 'pageview', location.pathname);
</script> </script>
<!-- End Google Analytics --> <!-- End Google Analytics -->

View file

@ -27,17 +27,31 @@
} }
.ingredients { .ingredients {
display: grid; display: flex;
grid-template-columns: auto auto auto; flex-flow: row wrap;
grid-column-gap: 14px; justify-content: flex-start;
column-gap: 14px;
row-gap: 0;
} }
.ingredients > div { .ing-very-wide {
grid-column: 1 / span 3; flex: 4 400px;
} }
.ingredients > div.inline { .ing-wide {
grid-column: unset; flex: 3 200px;
}
.ing-medium {
flex: 2 120px;
}
.ing-short {
flex: 1 80px;
}
.ing-flexible {
flex-grow: 1;
} }
.ingredients .form-group { .ingredients .form-group {
@ -64,6 +78,11 @@ div.toggle-string {
flex: 1; flex: 1;
} }
input.toggle-string {
border-top-right-radius: 0 !important;
height: 42px !important;
}
.operation [class^='bmd-label'], .operation [class^='bmd-label'],
.operation [class*=' bmd-label'] { .operation [class*=' bmd-label'] {
top: 13px !important; top: 13px !important;
@ -160,7 +179,7 @@ div.toggle-string {
} }
.input-group .form-control { .input-group .form-control {
border-top-left-radius: 4px !important; border-top-left-radius: 4px;
} }
.input-group-append button { .input-group-append button {

View file

@ -46,72 +46,6 @@
padding: 0; padding: 0;
} }
.io-card.card {
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
transition: 0.3s;
width: 400px;
height: 150px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-family: var(--primary-font-family);
color: var(--primary-font-colour);
line-height: 30px;
background-color: var(--primary-background-colour);
flex-direction: row;
padding-left: 10px;
}
.io-card.card:hover {
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}
.io-card.card>img {
float: left;
width: auto;
height: auto;
max-width: 128px;
max-height: 128px;
margin-left: auto;
margin-top: auto;
margin-right: auto;
margin-bottom: auto;
padding: 0px;
}
.io-card.card .card-body .close {
position: absolute;
right: 10px;
top: 4px;
}
.io-card.card .card-body {
float: left;
padding: 16px;
width: 250px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
user-select: text;
}
.io-card.card .card-body>.btn {
margin-bottom: 5px;
margin-top: 5px;
}
.io-card.card input[type=number] {
padding-right: 6px;
padding-left: 6px;
height: unset;
}
.io-card.card .input-group {
padding-top: 5px;
}
#files .card-header .float-right a:hover { #files .card-header .float-right a:hover {
text-decoration: none; text-decoration: none;
} }

View file

@ -6,27 +6,20 @@
* @license Apache-2.0 * @license Apache-2.0
*/ */
:root {
--controls-height: 75px;
}
#controls { #controls {
position: absolute; position: absolute;
width: 100%; width: 100%;
height: var(--controls-height);
bottom: 0; bottom: 0;
padding: 0; padding: 10px 0;
padding-top: 12px;
border-top: 1px solid var(--primary-border-colour); border-top: 1px solid var(--primary-border-colour);
background-color: var(--secondary-background-colour); background-color: var(--secondary-background-colour);
} }
#controls-content { #controls-content {
position: relative; position: relative;
left: 50%; display: flex;
top: 50%; flex-flow: row nowrap;
transform: translate(-50%, -50%); align-items: center;
transform-origin: center left;
} }
#auto-bake-label { #auto-bake-label {
@ -56,6 +49,7 @@
#controls .btn { #controls .btn {
border-radius: 30px; border-radius: 30px;
margin: 0;
} }
.output-maximised .hide-on-maximised-output { .output-maximised .hide-on-maximised-output {

View file

@ -7,41 +7,36 @@
*/ */
#input-text, #input-text,
#output-text, #output-text {
#output-html {
position: relative; position: relative;
width: 100%; width: 100%;
height: 100%; height: 100%;
margin: 0; margin: 0;
padding: 3px;
-moz-padding-start: 3px;
-moz-padding-end: 3px;
border: none;
border-width: 0px;
resize: none;
background-color: transparent; background-color: transparent;
white-space: pre-wrap;
word-wrap: break-word;
}
#output-wrapper{
margin: 0;
padding: 0;
}
#output-wrapper .textarea-wrapper {
width: 100%;
height: 100%;
box-sizing: border-box;
overflow: hidden; overflow: hidden;
pointer-events: auto; user-select: auto;
} }
#output-text.html-output .cm-content,
#output-text.html-output .cm-line,
#output-html { #output-html {
display: block;
height: 100%;
user-select: auto;
}
#output-text.html-output .cm-line .cm-widgetBuffer,
#output-text.html-output .cm-line>br {
display: none; display: none;
overflow-y: auto; }
-moz-padding-start: 1px; /* Fixes bug in Firefox */
.cm-editor {
height: 100%;
}
.cm-editor .cm-content {
font-family: var(--fixed-width-font-family);
font-size: var(--fixed-width-font-size);
color: var(--fixed-width-font-colour);
} }
#input-tabs-wrapper #input-tabs, #input-tabs-wrapper #input-tabs,
@ -162,70 +157,25 @@
} }
#input-wrapper, #input-wrapper,
#output-wrapper, #output-wrapper {
#input-wrapper > * ,
#output-wrapper > .textarea-wrapper > div,
#output-wrapper > .textarea-wrapper > textarea {
height: calc(100% - var(--title-height)); height: calc(100% - var(--title-height));
} }
#input-wrapper.show-tabs, #input-wrapper.show-tabs,
#input-wrapper.show-tabs > *, #output-wrapper.show-tabs {
#output-wrapper.show-tabs,
#output-wrapper.show-tabs > .textarea-wrapper > div,
#output-wrapper.show-tabs > .textarea-wrapper > textarea {
height: calc(100% - var(--tab-height) - var(--title-height)); height: calc(100% - var(--tab-height) - var(--title-height));
} }
#output-wrapper > .textarea-wrapper > #output-html {
height: 100%;
}
#show-file-overlay {
height: 32px;
}
.input-wrapper.textarea-wrapper {
width: 100%;
box-sizing: border-box;
overflow: hidden;
pointer-events: auto;
}
.textarea-wrapper textarea,
.textarea-wrapper>div {
font-family: var(--fixed-width-font-family);
font-size: var(--fixed-width-font-size);
color: var(--fixed-width-font-colour);
}
#input-highlighter,
#output-highlighter {
position: absolute;
left: 0;
bottom: 0;
width: 100%;
padding: 3px;
margin: 0;
overflow: hidden;
letter-spacing: normal;
white-space: pre-wrap;
word-wrap: break-word;
color: #fff;
background-color: transparent;
border: none;
pointer-events: none;
}
#output-loader { #output-loader {
position: absolute; position: absolute;
bottom: 0; bottom: 0;
left: 0; left: 0;
width: 100%; width: 100%;
height: 100%;
margin: 0; margin: 0;
background-color: var(--primary-background-colour); background-color: var(--secondary-background-colour);
visibility: hidden;
opacity: 0; opacity: 0;
visibility: hidden;
display: flex; display: flex;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
@ -254,31 +204,6 @@
transition: all 0.5s ease; transition: all 0.5s ease;
} }
#input-file,
#output-file {
position: absolute;
left: 0;
bottom: 0;
width: 100%;
display: none;
}
.file-overlay {
position: absolute;
opacity: 0.8;
background-color: var(--title-background-colour);
width: 100%;
height: 100%;
}
#show-file-overlay {
position: absolute;
right: 15px;
top: calc(var(--title-height) + 10px);
cursor: pointer;
display: none;
}
.io-info { .io-info {
margin-right: 18px; margin-right: 18px;
margin-top: 1px; margin-top: 1px;
@ -292,10 +217,6 @@
align-items: center; align-items: center;
} }
#input-info {
line-height: 15px;
}
.dropping-file { .dropping-file {
border: 5px dashed var(--drop-file-border-colour) !important; border: 5px dashed var(--drop-file-border-colour) !important;
} }
@ -458,3 +379,214 @@
cursor: pointer; cursor: pointer;
filter: brightness(98%); filter: brightness(98%);
} }
/* Highlighting */
.ͼ2.cm-focused .cm-selectionBackground {
background-color: var(--hl5);
}
.ͼ2 .cm-selectionBackground {
background-color: var(--hl1);
}
.ͼ1 .cm-selectionMatch {
background-color: var(--hl2);
}
.ͼ1.cm-focused .cm-cursor.cm-cursor-primary {
border-color: var(--primary-font-colour);
}
.ͼ1 .cm-cursor.cm-cursor-primary {
display: block;
border-color: var(--subtext-font-colour);
}
/* Status bar */
.cm-panel input::placeholder {
font-size: 12px !important;
}
.ͼ2 .cm-panels,
.ͼ2 .cm-side-panels {
background-color: var(--secondary-background-colour);
border-color: var(--primary-border-colour);
color: var(--primary-font-colour);
}
.cm-status-bar {
font-family: var(--fixed-width-font-family);
font-weight: normal;
font-size: 8pt;
margin: 0 5px;
display: flex;
flex-flow: row nowrap;
justify-content: space-between;
align-items: center;
}
.cm-status-bar i {
font-size: 12pt;
vertical-align: middle;
margin-left: 8px;
}
.cm-status-bar>div>span:first-child i {
margin-left: 0;
}
.cm-status-bar .disabled {
background-color: unset !important;
cursor: not-allowed;
}
/* Dropup Button */
.cm-status-bar-select-btn {
border: none;
cursor: pointer;
}
/* The container <div> - needed to position the dropup content */
.cm-status-bar-select {
position: relative;
display: inline-block;
}
/* Dropup content (Hidden by Default) */
.cm-status-bar-select-content {
display: none;
position: absolute;
bottom: 20px;
right: 0;
background-color: #f1f1f1;
min-width: 200px;
box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.2);
z-index: 1;
}
/* Links inside the dropup */
.cm-status-bar-select-content a {
color: black;
padding: 2px 5px;
text-decoration: none;
display: block;
}
/* Change color of dropup links on hover */
.cm-status-bar-select-content a:hover {
background-color: #ddd
}
/* Change the background color of the dropup button when the dropup content is shown */
.cm-status-bar-select:hover .cm-status-bar-select-btn {
background-color: #f1f1f1;
}
/* The search field */
.cm-status-bar-filter-input {
box-sizing: border-box;
font-size: 12px;
padding-left: 10px !important;
border: none;
}
.cm-status-bar-filter-search {
border-top: 1px solid #ddd;
}
/* Show the dropup menu */
.cm-status-bar-select .show {
display: block;
}
.cm-status-bar-select-scroll {
overflow-y: auto;
max-height: 300px;
}
.chr-enc-value {
max-width: 150px;
display: inline-block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
vertical-align: middle;
}
/* File details panel */
.cm-file-details {
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
overflow-y: auto;
padding-bottom: 21px;
height: 100%;
}
.file-details-toggle-shown,
.file-details-toggle-hidden {
width: 8px;
height: 40px;
border: 1px solid var(--secondary-border-colour);
position: absolute;
top: calc(50% - 20px);
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
background-color: var(--secondary-border-colour);
color: var(--subtext-font-colour);
z-index: 1;
}
.file-details-toggle-shown {
left: 0;
border-left: none;
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
}
.file-details-toggle-hidden {
left: -8px;
border-right: none;
border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
}
.file-details-toggle-shown:hover,
.file-details-toggle-hidden:hover {
background-color: var(--primary-border-colour);
border-color: var(--primary-border-colour);
color: var(--primary-font-colour);
}
.file-details-heading {
font-weight: bold;
margin: 10px 0 10px 0;
}
.file-details-data {
text-align: left;
margin: 10px 2px;
}
.file-details-data td {
padding: 0 3px;
max-width: 130px;
min-width: 60px;
overflow: hidden;
vertical-align: top;
word-break: break-all;
}
.file-details-error {
color: #f00;
}
.file-details-thumbnail {
max-width: 180px;
}

View file

@ -107,4 +107,4 @@
background-image: background-image:
linear-gradient(to top, var(--input-highlight-colour) 2px, rgba(0, 0, 0, 0) 2px), linear-gradient(to top, var(--input-highlight-colour) 2px, rgba(0, 0, 0, 0) 2px),
linear-gradient(to top, var(--primary-border-colour) 1px, rgba(0, 0, 0, 0) 1px); linear-gradient(to top, var(--primary-border-colour) 1px, rgba(0, 0, 0, 0) 1px);
} }

View file

@ -7,7 +7,6 @@
*/ */
#rec-list { #rec-list {
bottom: var(--controls-height);
overflow: auto; overflow: auto;
} }

View file

@ -110,11 +110,11 @@
/* Highlighter colours */ /* Highlighter colours */
--hl1: #fff000; --hl1: #ffee00aa;
--hl2: #95dfff; --hl2: #95dfffaa;
--hl3: #ffb6b6; --hl3: #ffb6b6aa;
--hl4: #fcf8e3; --hl4: #fcf8e3aa;
--hl5: #8de768; --hl5: #8de768aa;
/* Scrollbar */ /* Scrollbar */

View file

@ -108,9 +108,9 @@
/* Highlighter colours */ /* Highlighter colours */
--hl1: #264f78; --hl1: #264f78;
--hl2: #675351; --hl2: #675351;
--hl3: #ffb6b6; --hl3: #c40000;
--hl4: #fcf8e3; --hl4: #fcf8e3;
--hl5: #8de768; --hl5: #38811b;
/* Scrollbar */ /* Scrollbar */

Some files were not shown because too many files have changed in this diff Show more