Appease linter
This commit is contained in:
parent
c2146ce165
commit
4c15724caf
|
@ -342,7 +342,7 @@ module.exports = {
|
||||||
"no-mixed-operators": [ 2, {"groups": [["&", "|", "^", "~", "<<", ">>", ">>>"], ["&&", "||"]]}],
|
"no-mixed-operators": [ 2, {"groups": [["&", "|", "^", "~", "<<", ">>", ">>>"], ["&&", "||"]]}],
|
||||||
"no-use-before-define": [ 2, { "functions": false, "classes": true, "variables": false }],
|
"no-use-before-define": [ 2, { "functions": false, "classes": true, "variables": false }],
|
||||||
"no-constant-condition": [ 2, { "checkLoops": false } ],
|
"no-constant-condition": [ 2, { "checkLoops": false } ],
|
||||||
"new-cap": [ 2, { "properties": false, "capIsNewExceptionPattern": "CMAC|CBC|OMAC|CTR", "newIsCapExceptionPattern": "type|hash*"}],
|
"new-cap": [ 2, { "properties": false, "capIsNewExceptionPattern": "EAX|OCB|GCM|CMAC|CBC|OMAC|CTR", "newIsCapExceptionPattern": "type|hash*"}],
|
||||||
"max-lines": [ 2, { "max": 600, "skipBlankLines": true, "skipComments": true } ],
|
"max-lines": [ 2, { "max": 600, "skipBlankLines": true, "skipComments": true } ],
|
||||||
"no-unused-expressions": 0,
|
"no-unused-expressions": 0,
|
||||||
"chai-friendly/no-unused-expressions": [ 2, { "allowShortCircuit": true } ],
|
"chai-friendly/no-unused-expressions": [ 2, { "allowShortCircuit": true } ],
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
const openpgp = typeof window !== 'undefined' && window.openpgp ? window.openpgp : require('../..');
|
|
||||||
const aes_kw = require('../../src/crypto/aes_kw');
|
const aes_kw = require('../../src/crypto/aes_kw');
|
||||||
const util = require('../../src/util');
|
const util = require('../../src/util');
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
const { aes128 } = require('../../../src/crypto/cipher');
|
const { aes128: AES128 } = require('../../../src/crypto/cipher');
|
||||||
|
|
||||||
const chai = require('chai');
|
const chai = require('chai');
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@ const { expect } = chai;
|
||||||
|
|
||||||
module.exports = () => describe('AES Rijndael cipher test with test vectors from ecb_tbl.txt', function() {
|
module.exports = () => describe('AES Rijndael cipher test with test vectors from ecb_tbl.txt', function() {
|
||||||
function test_aes(input, key, output) {
|
function test_aes(input, key, output) {
|
||||||
const aes = new aes128(new Uint8Array(key));
|
const aes = new AES128(new Uint8Array(key));
|
||||||
|
|
||||||
const encrypted = aes.encrypt(new Uint8Array(input));
|
const encrypted = aes.encrypt(new Uint8Array(input));
|
||||||
expect(encrypted).to.deep.equal(new Uint8Array(output));
|
expect(encrypted).to.deep.equal(new Uint8Array(output));
|
||||||
|
|
|
@ -2,7 +2,6 @@
|
||||||
|
|
||||||
// Adapted from https://github.com/artjomb/cryptojs-extension/blob/8c61d159/test/eax.js
|
// Adapted from https://github.com/artjomb/cryptojs-extension/blob/8c61d159/test/eax.js
|
||||||
|
|
||||||
const openpgp = typeof window !== 'undefined' && window.openpgp ? window.openpgp : require('../..');
|
|
||||||
const OCB = require('../../src/crypto/ocb');
|
const OCB = require('../../src/crypto/ocb');
|
||||||
const util = require('../../src/util');
|
const util = require('../../src/util');
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user