35 lines
730 B
JSON
35 lines
730 B
JSON
{
|
|
"name": "aes-js",
|
|
"version": "3.1.2",
|
|
"bugs": {
|
|
"url": "http://github.com/ricmoo/aes-js/issues",
|
|
"email": "github@ricmoo.com"
|
|
},
|
|
"description": "A pure JavaScript implementation of the AES block cipher and all common modes of operation.",
|
|
"devDependencies": {
|
|
"nodeunit": "^0.9.1"
|
|
},
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"test": "./node_modules/.bin/nodeunit test/index.js"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/ricmoo/aes-js.git"
|
|
},
|
|
"keywords": [
|
|
"aes",
|
|
"aes-ctr",
|
|
"aes-ofb",
|
|
"aes-ecb",
|
|
"aes-cbc",
|
|
"aes-cfb",
|
|
"encrypt",
|
|
"decrypt",
|
|
"block",
|
|
"cipher"
|
|
],
|
|
"author": "Richard Moore <me@ricmoo.com>",
|
|
"license": "MIT"
|
|
}
|