diff --git a/src/crypto/cmac.js b/src/crypto/cmac.js index 1632c45e..14bfb0d3 100644 --- a/src/crypto/cmac.js +++ b/src/crypto/cmac.js @@ -10,7 +10,6 @@ import util from '../util'; const webCrypto = util.getWebCrypto(); const nodeCrypto = util.getNodeCrypto(); -const Buffer = util.getNodeBuffer(); /** @@ -82,9 +81,7 @@ async function CBC(key) { }; } if (util.getNodeCrypto()) { // Node crypto library - key = Buffer.from(key); return async function(pt) { - pt = Buffer.from(pt); const en = new nodeCrypto.createCipheriv('aes-' + (key.length * 8) + '-cbc', key, zeroBlock); const ct = en.update(pt); return new Uint8Array(ct); diff --git a/src/crypto/hash/index.js b/src/crypto/hash/index.js index 2e9e4855..facd1c7c 100644 --- a/src/crypto/hash/index.js +++ b/src/crypto/hash/index.js @@ -19,13 +19,12 @@ import defaultConfig from '../../config'; const webCrypto = util.getWebCrypto(); const nodeCrypto = util.getNodeCrypto(); -const Buffer = util.getNodeBuffer(); function nodeHash(type) { return async function (data) { const shasum = nodeCrypto.createHash(type); return stream.transform(data, value => { - shasum.update(Buffer.from(value)); + shasum.update(value); }, () => new Uint8Array(shasum.digest())); }; } diff --git a/src/crypto/mode/cfb.js b/src/crypto/mode/cfb.js index 67b32277..ba1a3036 100644 --- a/src/crypto/mode/cfb.js +++ b/src/crypto/mode/cfb.js @@ -30,7 +30,6 @@ import util from '../../util'; const webCrypto = util.getWebCrypto(); const nodeCrypto = util.getNodeCrypto(); -const Buffer = util.getNodeBuffer(); const knownAlgos = nodeCrypto ? nodeCrypto.getCiphers() : []; const nodeAlgos = { @@ -149,15 +148,11 @@ async function webEncrypt(algo, key, pt, iv) { } function nodeEncrypt(algo, key, pt, iv) { - key = Buffer.from(key); - iv = Buffer.from(iv); const cipherObj = new nodeCrypto.createCipheriv(nodeAlgos[algo], key, iv); - return stream.transform(pt, value => new Uint8Array(cipherObj.update(Buffer.from(value)))); + return stream.transform(pt, value => new Uint8Array(cipherObj.update(value))); } function nodeDecrypt(algo, key, ct, iv) { - key = Buffer.from(key); - iv = Buffer.from(iv); const decipherObj = new nodeCrypto.createDecipheriv(nodeAlgos[algo], key, iv); - return stream.transform(ct, value => new Uint8Array(decipherObj.update(Buffer.from(value)))); + return stream.transform(ct, value => new Uint8Array(decipherObj.update(value))); } diff --git a/src/crypto/mode/eax.js b/src/crypto/mode/eax.js index c07c27b2..3c817e34 100644 --- a/src/crypto/mode/eax.js +++ b/src/crypto/mode/eax.js @@ -59,10 +59,7 @@ async function CTR(key) { }; } if (util.getNodeCrypto()) { // Node crypto library - key = Buffer.from(key); return async function(pt, iv) { - pt = Buffer.from(pt); - iv = Buffer.from(iv); const en = new nodeCrypto.createCipheriv('aes-' + (key.length * 8) + '-ctr', key, iv); const ct = Buffer.concat([en.update(pt), en.final()]); return new Uint8Array(ct); diff --git a/src/crypto/mode/gcm.js b/src/crypto/mode/gcm.js index 576c4908..58b6abc7 100644 --- a/src/crypto/mode/gcm.js +++ b/src/crypto/mode/gcm.js @@ -79,13 +79,8 @@ async function GCM(cipher, key) { } if (util.getNodeCrypto()) { // Node crypto library - key = Buffer.from(key); - return { encrypt: async function(pt, iv, adata = new Uint8Array()) { - pt = Buffer.from(pt); - iv = Buffer.from(iv); - adata = Buffer.from(adata); const en = new nodeCrypto.createCipheriv('aes-' + (key.length * 8) + '-gcm', key, iv); en.setAAD(adata); const ct = Buffer.concat([en.update(pt), en.final(), en.getAuthTag()]); // append auth tag to ciphertext @@ -93,9 +88,6 @@ async function GCM(cipher, key) { }, decrypt: async function(ct, iv, adata = new Uint8Array()) { - ct = Buffer.from(ct); - iv = Buffer.from(iv); - adata = Buffer.from(adata); const de = new nodeCrypto.createDecipheriv('aes-' + (key.length * 8) + '-gcm', key, iv); de.setAAD(adata); de.setAuthTag(ct.slice(ct.length - tagLength, ct.length)); // read auth tag at end of ciphertext