parent
f41432d943
commit
a15fcc6f06
@ -1,32 +1,45 @@
|
|||||||
const crypto = require('crypto');
|
// const crypto = require('crypto');
|
||||||
|
|
||||||
// Key and IV generation for AES
|
// // Key and IV generation for AES
|
||||||
const algorithm = 'aes-256-cbc';
|
// const algorithm = 'aes-256-cbc';
|
||||||
const key = crypto.randomBytes(32); // 256-bit key
|
// const key = crypto.randomBytes(32); // 256-bit key
|
||||||
console.log(key)
|
// console.log(key)
|
||||||
const iv = crypto.randomBytes(16); // Initialization vector
|
// const iv = crypto.randomBytes(16); // Initialization vector
|
||||||
console.log(iv)
|
// console.log(iv)
|
||||||
// Encrypt function
|
// // Encrypt function
|
||||||
function encrypt(text) {
|
// function encrypt(text) {
|
||||||
const cipher = crypto.createCipheriv(algorithm, key, iv);
|
// const cipher = crypto.createCipheriv(algorithm, key, iv);
|
||||||
let encrypted = cipher.update(text, 'utf8', 'hex');
|
// let encrypted = cipher.update(text, 'utf8', 'hex');
|
||||||
encrypted += cipher.final('hex');
|
// encrypted += cipher.final('hex');
|
||||||
return encrypted;
|
// return encrypted;
|
||||||
}
|
// }
|
||||||
|
|
||||||
// Decrypt function
|
// // Decrypt function
|
||||||
function decrypt(encryptedText) {
|
// function decrypt(encryptedText) {
|
||||||
const decipher = crypto.createDecipheriv(algorithm, key, iv);
|
// const decipher = crypto.createDecipheriv(algorithm, key, iv);
|
||||||
let decrypted = decipher.update(encryptedText, 'hex', 'utf8');
|
// let decrypted = decipher.update(encryptedText, 'hex', 'utf8');
|
||||||
decrypted += decipher.final('utf8');
|
// decrypted += decipher.final('utf8');
|
||||||
return decrypted;
|
// return decrypted;
|
||||||
}
|
// }
|
||||||
|
|
||||||
// Example usage
|
// // Example usage
|
||||||
const textToEncrypt = 'Hello, World!';
|
// const textToEncrypt = 'Hello, World!';
|
||||||
const encryptedText = encrypt(textToEncrypt);
|
// const encryptedText = encrypt(textToEncrypt);
|
||||||
const decryptedText = decrypt(encryptedText);
|
// const decryptedText = decrypt(encryptedText);
|
||||||
|
|
||||||
console.log('Text to Encrypt:', textToEncrypt);
|
// console.log('Text to Encrypt:', textToEncrypt);
|
||||||
console.log('Encrypted Text:', encryptedText);
|
// console.log('Encrypted Text:', encryptedText);
|
||||||
console.log('Decrypted Text:', decryptedText);
|
// console.log('Decrypted Text:', decryptedText);
|
||||||
|
|
||||||
|
|
||||||
|
console.log("Starting script...");
|
||||||
|
|
||||||
|
setTimeout(() => {
|
||||||
|
console.log("About to throw an error...");
|
||||||
|
1*p
|
||||||
|
}, 3000);
|
||||||
|
|
||||||
|
process.on("uncaughtException", (err) => {
|
||||||
|
console.error("Caught before exit:", err);
|
||||||
|
process.exit(1); // Ensure the process exits after logging
|
||||||
|
});
|
||||||
|
Loading…
Reference in new issue