mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
1d45367aa1
* Fixed duplication kve bug * Added semistandard and updated code * Actually got it working * Even better * I think it should work on Windows now
100 lines
1.7 KiB
JavaScript
100 lines
1.7 KiB
JavaScript
/*
|
|
* This is a stupid little mock that basically disabled encryption.
|
|
* The reason it is needed is because the Forge module loader doesn't
|
|
* play along with Jest.
|
|
*/
|
|
const forge = require('../../node_modules/node-forge/lib/index');
|
|
|
|
module.exports = {
|
|
jsbn: forge.jsbn,
|
|
util: forge.util,
|
|
pkcs5: {
|
|
pbkdf2 () {
|
|
|
|
}
|
|
},
|
|
md: {
|
|
sha256: {
|
|
create () {
|
|
return 'TODO';
|
|
}
|
|
}
|
|
},
|
|
rsa: {
|
|
setPublicKey () {
|
|
return {
|
|
encrypt (str) {
|
|
return str;
|
|
}
|
|
};
|
|
},
|
|
setPrivateKey () {
|
|
return {
|
|
decrypt (str) {
|
|
return str;
|
|
}
|
|
};
|
|
}
|
|
},
|
|
random: {
|
|
getBytesSync (n) {
|
|
let s = '';
|
|
for (let i = 0; i < n; i++) {
|
|
s += 'a';
|
|
}
|
|
return s;
|
|
}
|
|
},
|
|
pki: {
|
|
rsa: {
|
|
generateKeyPair () {
|
|
return {
|
|
privateKey: {
|
|
d: 'a',
|
|
dP: 'a',
|
|
dQ: 'a',
|
|
e: 'a',
|
|
n: 'a',
|
|
p: 'a',
|
|
q: 'a',
|
|
qInv: 'a'
|
|
},
|
|
publicKey: {
|
|
e: 'a',
|
|
n: 'a'
|
|
}
|
|
};
|
|
}
|
|
}
|
|
},
|
|
cipher: {
|
|
createCipher (alg, key) {
|
|
return {
|
|
start (config) {
|
|
this._config = config;
|
|
},
|
|
update (buffer) {
|
|
this._data = buffer;
|
|
},
|
|
finish () {
|
|
this.mode = {tag: 'tag'};
|
|
this.output = this._data;
|
|
}
|
|
};
|
|
},
|
|
createDecipher (alg, key) {
|
|
return {
|
|
start (config) {
|
|
this._config = config;
|
|
},
|
|
update (buffer) {
|
|
this.output = buffer;
|
|
},
|
|
finish () {
|
|
return true;
|
|
}
|
|
};
|
|
}
|
|
}
|
|
};
|