Last active
July 31, 2024 12:59
-
-
Save bbstilson/a3a6c74fdc2a2519ab6ba59bcd06a1c4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const crypto = require('crypto'); | |
const fs = require('fs'); | |
const path = require('path'); | |
const zlib = require('zlib'); | |
const getCipherKey = require('./getCipherKey'); | |
function decrypt({ file, password }) { | |
// First, get the initialization vector from the file. | |
const readInitVect = fs.createReadStream(file, { end: 15 }); | |
let initVect; | |
readInitVect.on('data', (chunk) => { | |
initVect = chunk; | |
}); | |
// Once we’ve got the initialization vector, we can decrypt the file. | |
readInitVect.on('close', () => { | |
const cipherKey = getCipherKey(password); | |
const readStream = fs.createReadStream(file, { start: 16 }); | |
const decipher = crypto.createDecipheriv('aes256', cipherKey, initVect); | |
const unzip = zlib.createUnzip(); | |
const writeStream = fs.createWriteStream(file + '.unenc'); | |
readStream | |
.pipe(decipher) | |
.pipe(unzip) | |
.pipe(writeStream); | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi, I was trying out your encryption and decryption code, but it seems the decryption is giving an error
events.js:292
throw er; // Unhandled 'error' event
^
Error: incorrect header check
at Zlib.zlibOnError [as onerror] (zlib.js:182:17)
Emitted 'error' event on Unzip instance at:
at Unzip.onerror (internal/streams/readable.js:760:14)
at Unzip.emit (events.js:315:20)
at emitErrorNT (internal/streams/destroy.js:106:8)
at emitErrorCloseNT (internal/streams/destroy.js:74:3)
at processTicksAndRejections (internal/process/task_queues.js:80:21) {
errno: -3,
code: 'Z_DATA_ERROR'
}
can you help on this or have an idea as to what could be the issue?