You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
583 B
32 lines
583 B
{ |
|
"name": "aes-js", |
|
"description": "A pure JavaScript implementation of the AES block cipher and all common modes of operation.", |
|
"main": "index.js", |
|
"authors": [ |
|
"Richard Moore <me@ricmoo.com>" |
|
], |
|
"license": "MIT", |
|
"keywords": [ |
|
"aes", |
|
"aes-ctr", |
|
"aes-ofb", |
|
"aes-ecb", |
|
"aes-cbc", |
|
"aes-cfb", |
|
"encrypt", |
|
"decrypt", |
|
"block", |
|
"cipher" |
|
], |
|
"homepage": "https://github.com/ricmoo/aes-js", |
|
"moduleType": [ |
|
"globals" |
|
], |
|
"ignore": [ |
|
"**/.*", |
|
"node_modules", |
|
"bower_components", |
|
"test", |
|
"tests" |
|
] |
|
}
|
|
|