This repository provides a set of cryptographic tools and utilities implemented in Node.js. The project offers support for hashing, encryption, decryption, RSA key generation, signing, and verifying signatures. It is designed to simplify the process of implementing secure cryptographic functionalities in your applications.
Clone the repository and install dependencies:
Create a secure hash using SHA-256:
// Example data
const data = "Hello World";
const hash = hashData(HASHING_ALGORITHM.SHA256, data);
console.log(`Hash: ${hash}`);
Working with base64 util to encode and decode contents.
// Example data
const originalContent ="Hello World";
const encodedContent = base64Encode(originalContent);
const decodedContent = base64Decode(encodedContent);
console.log(`Base64 encoded: ${encodedContent}`);
console.log(`Base64 decoded: ${decodedContent}`);
// Example usage
const buffer = readFileContent('//path');
This method encrypts data using the AES (Advanced Encryption Standard) algorithm with a specified key and initialization vector (IV).
This method decrypts AES-encrypted data using the same key and IV that were used for encryption.
const userInput = await readLine();
const cipher = encrypt(userInput)
console.info(cipher);
console.info(decrypt(cipher.encryptedData, cipher.key, cipher.iv));
Purpose: The signDataWithRSA method signs a piece of data using the RSA algorithm and a private key. This ensures data integrity and authenticity by generating a digital signature that can later be verified using the corresponding public key.
const {privateKey, publicKey} = generateRsaKeyPair(2048);
const signature = signData(DataToSign, privateKey);
console.log(signature.toString('base64'));
crypto.createSign(algorithm): Initializes a new Sign object for the specified hashing algorithm (defaulting to 'sha256'). sign.update(data): Adds the data to be signed to the Sign object. You can update the sign object multiple times if the data is large. sign.end(): Signals that the input data is complete, preparing it for signing. sign.sign(privateKey): Generates the digital signature using the specified private key. The result is a buffer containing the signature. This method ensures that the data can be verified later with the corresponding public key, validating both the source and integrity of the data.
To verify the signature of data using the RSA public key. This allows the recipient to ensure that the data came from a trusted source and that it has not been modified.
const {privateKey, publicKey} = generateRsaKeyPair(2048);
const isValid = verifySignature(userInput, publicKey, signature);
console.log(isValid);