Appease linter

This commit is contained in:
Daniel Huigens 2020-12-07 23:41:42 +01:00
parent c2146ce165
commit 4c15724caf
4 changed files with 3 additions and 5 deletions

View File

@ -342,7 +342,7 @@ module.exports = {
"no-mixed-operators": [ 2, {"groups": [["&", "|", "^", "~", "<<", ">>", ">>>"], ["&&", "||"]]}],
"no-use-before-define": [ 2, { "functions": false, "classes": true, "variables": 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 } ],
"no-unused-expressions": 0,
"chai-friendly/no-unused-expressions": [ 2, { "allowShortCircuit": true } ],

View File

@ -1,4 +1,3 @@
const openpgp = typeof window !== 'undefined' && window.openpgp ? window.openpgp : require('../..');
const aes_kw = require('../../src/crypto/aes_kw');
const util = require('../../src/util');

View File

@ -1,4 +1,4 @@
const { aes128 } = require('../../../src/crypto/cipher');
const { aes128: AES128 } = require('../../../src/crypto/cipher');
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() {
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));
expect(encrypted).to.deep.equal(new Uint8Array(output));

View File

@ -2,7 +2,6 @@
// 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 util = require('../../src/util');