Code Monkey home page Code Monkey logo

Comments (12)

indutny avatar indutny commented on July 20, 2024

@beastybeast you could use browserify to build browser bundle.

This could be done by:

  1. npm install
  2. make -B
  3. ls dist/*

All files that are usable in browser are in dist/ folder.

from elliptic.

indutny avatar indutny commented on July 20, 2024

And as far as I remember - they are exported via elliptic global variable.

from elliptic.

beastybeast avatar beastybeast commented on July 20, 2024

Sorry but I can not use "npm install" etc as I do not have NodeJS as the backend - do I need to install it?
Why can I not just take the file elliptic.js from the dist folder and include it in my header files for the browser?

Try to click the link : https://pcrypt.org/dev/ecc.php

and see the result!

Everything need to be browser client based.

from elliptic.

indutny avatar indutny commented on July 20, 2024

Ok, I just did it for you. You could pick up js files from dist/ folder.

from elliptic.

indutny avatar indutny commented on July 20, 2024

And node.js is not required for this.

from elliptic.

beastybeast avatar beastybeast commented on July 20, 2024

Thank you, but the problem is still the same?

I have downloaded this version and updated - EC and elliptic is still unknown for javascript?

from elliptic.

indutny avatar indutny commented on July 20, 2024

Oh, sorry. It is ellipticjs, not just elliptic

from elliptic.

beastybeast avatar beastybeast commented on July 20, 2024

Great. now it seams to work.

Just needed to modify the initialisation to this:

var ec = new ellipticjs.ec('secp256k1');

You may need to update the documentation?

NB: Please also see that ec is now lower case letters.

from elliptic.

indutny avatar indutny commented on July 20, 2024

It is in lower case in docs too:

var EC = require('elliptic').ec;

from elliptic.

beastybeast avatar beastybeast commented on July 20, 2024

Yes but that is NodeJS. Does not work with client javascript

from elliptic.

beastybeast avatar beastybeast commented on July 20, 2024

On the front page the initialization is:

var ec = new EC('secp256k1');

This will not work in client side javascript

Also:

var EC = require('elliptic').ec;

Will not run.

from elliptic.

bronze1man avatar bronze1man commented on July 20, 2024

Full work example in browser:

(function(){
    var ec = new elliptic.ec('curve25519');

    // Generate keys
    var key1 = ec.genKeyPair();
    var key2 = ec.genKeyPair();

    var shared1 = key1.derive(key2.getPublic());
    var shared2 = key2.derive(key1.getPublic());

    console.log('Both shared secrets are BN instances');
    console.log(shared1.toString(16));
    console.log(shared2.toString(16));
})();

Put this example in README.md may be better.

from elliptic.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.