var ecc = require("./index.js"); var key1 = new ecc.ECKey(ecc.ECCurves.secp160r1); var key2 = new ecc.ECKey(ecc.ECCurves.secp160r1); console.log(key1.deriveSharedSecret(key2)); var key3 = new ecc.ECKey(ecc.ECCurves.secp160r1,key1.PrivateKey); var key4 = new ecc.ECKey(ecc.ECCurves.secp160r1,key2.PublicKey,true); console.log(key3.deriveSharedSecret(key4)); var key1 = new ecc.ECKey(ecc.ECCurves.secp256r1); var key2 = new ecc.ECKey(ecc.ECCurves.secp256r1); console.log(key1.deriveSharedSecret(key2)); var key3 = new ecc.ECKey(ecc.ECCurves.secp256r1,key1.PrivateKey); var key4 = new ecc.ECKey(ecc.ECCurves.secp256r1,key2.PublicKey,true); console.log(key3.deriveSharedSecret(key4));
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
lib | Folder | 0755 |
|
|
LICENSE | File | 1.05 KB | 0755 |
|
README.md | File | 402 B | 0755 |
|
index.js | File | 1.79 KB | 0755 |
|
package.json | File | 1.54 KB | 0755 |
|
test.js | File | 682 B | 0755 |
|