Giter VIP home page Giter VIP logo

Comments (5)

AntonKueltz avatar AntonKueltz commented on June 16, 2024

Could you please post the exact code you ran that gave this error (including values of any parameters)? Thanks.

from fastecdsa.

AntonKueltz avatar AntonKueltz commented on June 16, 2024

For reference:

In [1]: from fastecdsa import curve, ecdsa, keys

In [2]: m = "a message to sign via ECDSA"  # some message

In [3]: private_key = keys.gen_private_key(curve.P192)

In [4]: public_key = keys.get_public_key(private_key, curve.P192)

In [5]: r, s = ecdsa.sign(m, private_key, curve=curve.P192)

In [6]: valid = ecdsa.verify((r, s), m, public_key, curve=curve.P192)

In [7]: valid
Out[7]: True

Remember, P256 is the curve used by default in this package, so if you want to use a different curve to sign / verify you have to pass in the curve as a keyword arg.

from fastecdsa.

gajinderpanesar avatar gajinderpanesar commented on June 16, 2024

Hello,

That is very strange. The following is a cut'n'paste of what I ran.
I am probably being stupid somewhere but it looks the same to me.
I ran it using the default SHA function and got the same error.

Thanks,
Gajinder Panesar

from fastecdsa import curve, ecdsa, keys
from hashlib import sha384
m = "a message to sign via ECDSA" # some message
private_key = keys.gen_private_key(curve.P192)
public_key = keys.get_public_key(private_key, curve.P192)
r, s = ecdsa.sign(m, private_key, hashfunc=sha384)
valid = ecdsa.verify((r, s), m, public_key, hashfunc=sha384)
Traceback (most recent call last):
File "", line 1, in
File "build/bdist.linux-x86_64/egg/fastecdsa/ecdsa.py", line 72, in verify
raise EcdsaError('Invalid public key, point is not on curve {}'.format(curve.name))
fastecdsa.ecdsa.EcdsaError

from fastecdsa.

AntonKueltz avatar AntonKueltz commented on June 16, 2024

You need to specifiy the curve as P192 in sign and verify. You wrote:

r, s = ecdsa.sign(m, private_key, hashfunc=sha384)
valid = ecdsa.verify((r, s), m, public_key, hashfunc=sha384)

This needs to be:

r, s = ecdsa.sign(m, private_key, curve=curve.P192, hashfunc=sha384)
valid = ecdsa.verify((r, s), m, public_key, curve=curve.P192, hashfunc=sha384)

See below for correct usage of the whole code block you provided:

In [1]: from fastecdsa import curve, ecdsa, keys
   ...: from hashlib import sha384
   ...: m = "a message to sign via ECDSA" # some message
   ...: private_key = keys.gen_private_key(curve.P192)
   ...: public_key = keys.get_public_key(private_key, curve.P192)
   ...: r, s = ecdsa.sign(m, private_key, curve=curve.P192, hashfunc=sha384)
   ...: valid = ecdsa.verify((r, s), m, public_key, curve=curve.P192, hashfunc=sha384)
   ...: 

In [2]: valid
Out[2]: True

from fastecdsa.

gajinderpanesar avatar gajinderpanesar commented on June 16, 2024

Oh! Thanks for pointing out my stupidity. Appreciate it.

from fastecdsa.

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.