0.2.0 - Mid migration

This commit is contained in:
Daniel Mason 2022-04-25 14:47:15 +12:00
parent 139e6a915e
commit 7e38fdbd7d
42393 changed files with 5358157 additions and 62 deletions

8
web/node_modules/browserify-des/.travis.yml generated vendored Normal file
View file

@ -0,0 +1,8 @@
language: node_js
node_js:
- "0.11"
- "0.10"
- "0.12"
- "4"
- "6"
- "10"

50
web/node_modules/browserify-des/index.js generated vendored Normal file
View file

@ -0,0 +1,50 @@
var CipherBase = require('cipher-base')
var des = require('des.js')
var inherits = require('inherits')
var Buffer = require('safe-buffer').Buffer
var modes = {
'des-ede3-cbc': des.CBC.instantiate(des.EDE),
'des-ede3': des.EDE,
'des-ede-cbc': des.CBC.instantiate(des.EDE),
'des-ede': des.EDE,
'des-cbc': des.CBC.instantiate(des.DES),
'des-ecb': des.DES
}
modes.des = modes['des-cbc']
modes.des3 = modes['des-ede3-cbc']
module.exports = DES
inherits(DES, CipherBase)
function DES (opts) {
CipherBase.call(this)
var modeName = opts.mode.toLowerCase()
var mode = modes[modeName]
var type
if (opts.decrypt) {
type = 'decrypt'
} else {
type = 'encrypt'
}
var key = opts.key
if (!Buffer.isBuffer(key)) {
key = Buffer.from(key)
}
if (modeName === 'des-ede' || modeName === 'des-ede-cbc') {
key = Buffer.concat([key, key.slice(0, 8)])
}
var iv = opts.iv
if (!Buffer.isBuffer(iv)) {
iv = Buffer.from(iv)
}
this._des = mode.create({
key: key,
iv: iv,
type: type
})
}
DES.prototype._update = function (data) {
return Buffer.from(this._des.update(data))
}
DES.prototype._final = function () {
return Buffer.from(this._des.final())
}

21
web/node_modules/browserify-des/license generated vendored Normal file
View file

@ -0,0 +1,21 @@
The MIT License (MIT)
Copyright (c) 2014-2017 Calvin Metcalf, Fedor Indutny & contributors
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

24
web/node_modules/browserify-des/modes.js generated vendored Normal file
View file

@ -0,0 +1,24 @@
exports['des-ecb'] = {
key: 8,
iv: 0
}
exports['des-cbc'] = exports.des = {
key: 8,
iv: 8
}
exports['des-ede3-cbc'] = exports.des3 = {
key: 24,
iv: 8
}
exports['des-ede3'] = {
key: 24,
iv: 0
}
exports['des-ede-cbc'] = {
key: 16,
iv: 8
}
exports['des-ede'] = {
key: 16,
iv: 0
}

30
web/node_modules/browserify-des/package.json generated vendored Normal file
View file

@ -0,0 +1,30 @@
{
"name": "browserify-des",
"version": "1.0.2",
"description": "",
"main": "index.js",
"scripts": {
"test": "standard && node test.js | tspec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/crypto-browserify/browserify-des.git"
},
"author": "Calvin Metcalf <calvin.metcalf@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/crypto-browserify/browserify-des/issues"
},
"homepage": "https://github.com/crypto-browserify/browserify-des#readme",
"dependencies": {
"cipher-base": "^1.0.1",
"des.js": "^1.0.0",
"inherits": "^2.0.1",
"safe-buffer": "^5.1.2"
},
"devDependencies": {
"standard": "^5.3.1",
"tap-spec": "^4.1.0",
"tape": "^4.2.0"
}
}

6
web/node_modules/browserify-des/readme.md generated vendored Normal file
View file

@ -0,0 +1,6 @@
browserify-des
===
[![Build Status](https://travis-ci.org/crypto-browserify/browserify-des.svg)](https://travis-ci.org/crypto-browserify/browserify-des)
DES for browserify

81
web/node_modules/browserify-des/test.js generated vendored Normal file
View file

@ -0,0 +1,81 @@
var test = require('tape')
var DES = require('./')
var modes = require('./modes')
var crypto = require('crypto')
Object.keys(modes).forEach(function (mode) {
test(mode, function (t) {
var i = 0
while (++i < 10) {
runOnce(i)
}
function runOnce (i) {
t.test('run: ' + i, function (t) {
t.plan(2)
var key = crypto.randomBytes(modes[mode].key)
var iv = crypto.randomBytes(modes[mode].iv)
var text = crypto.randomBytes(200)
var ourEncrypt
try {
ourEncrypt = new DES({
mode: mode,
key: key,
iv: iv
})
} catch (e) {
t.notOk(e, e.stack)
}
var nodeEncrypt
try {
nodeEncrypt = crypto.createCipheriv(mode, key, iv)
} catch (e) {
t.notOk(e, e.stack)
}
var ourCipherText = Buffer.concat([ourEncrypt.update(text), ourEncrypt.final()])
var nodeCipherText = Buffer.concat([nodeEncrypt.update(text), nodeEncrypt.final()])
t.equals(nodeCipherText.toString('hex'), ourCipherText.toString('hex'))
var ourDecrypt = new DES({
mode: mode,
key: key,
iv: iv,
decrypt: true
})
var plainText = Buffer.concat([ourDecrypt.update(ourCipherText), ourDecrypt.final()])
t.equals(text.toString('hex'), plainText.toString('hex'))
})
t.test('run text: ' + i, function (t) {
t.plan(2)
var key = crypto.randomBytes(32).toString('base64').slice(0, modes[mode].key)
var iv = crypto.randomBytes(32).toString('base64').slice(0, modes[mode].iv)
var text = crypto.randomBytes(200)
var ourEncrypt
try {
ourEncrypt = new DES({
mode: mode,
key: key,
iv: iv
})
} catch (e) {
t.notOk(e, e.stack)
}
var nodeEncrypt
try {
nodeEncrypt = crypto.createCipheriv(mode, key, iv)
} catch (e) {
t.notOk(e, e.stack)
}
var ourCipherText = Buffer.concat([ourEncrypt.update(text), ourEncrypt.final()])
var nodeCipherText = Buffer.concat([nodeEncrypt.update(text), nodeEncrypt.final()])
t.equals(nodeCipherText.toString('hex'), ourCipherText.toString('hex'))
var ourDecrypt = new DES({
mode: mode,
key: key,
iv: iv,
decrypt: true
})
var plainText = Buffer.concat([ourDecrypt.update(ourCipherText), ourDecrypt.final()])
t.equals(text.toString('hex'), plainText.toString('hex'))
})
}
})
})