-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 897 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 897 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "basic_simple_elgamal",
"version": "2.4.14",
"description": "This is a cypher engine which uses ElGamal cryptosystem internally. besides cryptography, it provide some group functionality such as add 2 members or select a random group member and so on.",
"main": "./elgamal",
"scripts": {
"test": "echo 'test'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SoftwareSecurityLab/ElGamal.git"
},
"keywords": [
"elgamal",
"cyclic",
"group",
"multiplicative",
"group",
"cryptography"
],
"author": "Golgolnia Milad",
"license": "ISC",
"bugs": {
"url": "https://github.com/SoftwareSecurityLab/ElGamal/issues"
},
"homepage": "https://github.com/SoftwareSecurityLab/ElGamal#readme",
"dependencies": {
"big-integer": "^1.6.48",
"debug": "^4.3.1",
"jsbn": "^1.1.0",
"threads": "^1.6.5"
}
}