encryptor-e2e
Version:
`encryptor-e2e` is a lightweight Node.js library that provides **end-to-end encrypted messaging** using a hybrid cryptographic approach — combining **RSA for key exchange** and **AES for message encryption**. It simplifies the process of securely sending
54 lines (53 loc) • 1.1 kB
JSON
{
"name": "encryptor-e2e",
"version": "1.0.2",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"test": "node dist/index.js"
},
"files": [
"dist"
],
"keywords": [
"end-to-end encryption",
"secure messaging",
"data encryption",
"AES encryption",
"RSA encryption",
"message encryption",
"crypto-js",
"node-rsa",
"secure communication",
"encryptor",
"decryption",
"asymmetric encryption",
"symmetric encryption",
"key management",
"privacy",
"confidentiality",
"secure chat",
"encryption library",
"security",
"cryptography"
],
"repository": {
"type": "git",
"url": "https://github.com/rRahul0/encryptor-e2e.git"
},
"author": "Rahul karmakar",
"license": "ISC",
"description": "",
"dependencies": {
"crypto-js": "^4.2.0",
"node-rsa": "^1.1.1"
},
"devDependencies": {
"@types/crypto-js": "^4.2.2",
"@types/node": "^24.0.10",
"@types/node-rsa": "^1.1.4",
"typescript": "^5.8.3"
}
}