0a5ab058a6
- Angular 12 application with PrimeNG components - 5 existing Cypress e2e test suites - SCSS styling with BEM naming convention - i18n support (10 languages) - Leaflet map integration - Complete component hierarchy and routing structure This baseline will be used for Angular → React migration.
15 lines
682 B
JavaScript
Executable File
15 lines
682 B
JavaScript
Executable File
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));
|