aes-gcm-stream
Version:
A dependency free NodeJS module that implements AES256 GCM encryption and decryption as transform streams.
44 lines (43 loc) • 1.03 kB
JSON
{
"name": "aes-gcm-stream",
"version": "2.1.0",
"description": "A dependency free NodeJS module that implements AES256 GCM encryption and decryption as transform streams.",
"author": "Matt Surabian <matt@mattsurabian.com>",
"contributors": [
{
"name": "Calvin Metcalf",
"email": "calvin.metcalf@gmail.com"
}
],
"main": "index.js",
"scripts": {
"test": "npm run lint && node test.js | tspec",
"lint": "jscs index.js test.js examples/ && jshint index.js test.js examples/"
},
"repository": {
"type": "git",
"url": "https://github.com/mattsurabian/aes-gcm-stream"
},
"bugs": {
"url": "https://github.com/mattsurabian/aes-gcm-stream/issues"
},
"keywords": [
"aes",
"aes256",
"gcm",
"transform",
"stream",
"crypto",
"authenticated",
"encryption",
"aes-256-gcm"
],
"license": "MIT",
"devDependencies": {
"jscs": "^1.12.0",
"jshint": "^2.7.0",
"tap-spec": "^3.0.0",
"tape": "^4.0.0",
"benchmark": "^1.0.0"
}
}