source: trip-planner-front/node_modules/ecc-jsbn/test.js@ e29cc2e

Last change on this file since e29cc2e was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 682 bytes
Line 
1var ecc = require("./index.js");
2var key1 = new ecc.ECKey(ecc.ECCurves.secp160r1);
3var key2 = new ecc.ECKey(ecc.ECCurves.secp160r1);
4console.log(key1.deriveSharedSecret(key2));
5var key3 = new ecc.ECKey(ecc.ECCurves.secp160r1,key1.PrivateKey);
6var key4 = new ecc.ECKey(ecc.ECCurves.secp160r1,key2.PublicKey,true);
7console.log(key3.deriveSharedSecret(key4));
8
9var key1 = new ecc.ECKey(ecc.ECCurves.secp256r1);
10var key2 = new ecc.ECKey(ecc.ECCurves.secp256r1);
11console.log(key1.deriveSharedSecret(key2));
12var key3 = new ecc.ECKey(ecc.ECCurves.secp256r1,key1.PrivateKey);
13var key4 = new ecc.ECKey(ecc.ECCurves.secp256r1,key2.PublicKey,true);
14console.log(key3.deriveSharedSecret(key4));
Note: See TracBrowser for help on using the repository browser.