arkworks-rs / algebra

Libraries for finite field, elliptic curve, and polynomial arithmetic
https://arkworks.rs
Apache License 2.0
606 stars 237 forks source link

Clarification on incomplete Twisted Edwards curves #726

Open kevaundray opened 2 years ago

kevaundray commented 2 years ago

Problem

It is not clear whether incomplete Twisted Edwards curves are allowed in arkworks or how to notify someone that they are using an incomplete twisted Edwards curve and their possible security implications.

Relevance

Currently Bandersnatch is an incomplete twisted Edwards curve.

The claim can be tested with the following code:


    assert!(d.sqrt().is_none());
    assert!(a.sqrt().is_none());

    assert!((d / a).sqrt().is_some());

Possible Solution

yelhousni commented 2 years ago

It is indeed incomplete but "practically" complete with a reasonable assumption. The points at infinity are all of even order while we work on a field of odd prime order. So there are no exceptions as long as we check that the points are of odd order (we do a subgroup check anyway). See section.2 here.

kevaundray commented 2 years ago

Yep checking the point is in the odd prime order subgroup r would avoid these exceptional points. This check can be quite expensive however, another technique is to use a legendre check and take a quotient group;

weikengchen commented 2 years ago

I checked the paper Section 6, page 11, https://eprint.iacr.org/2008/013.pdf, it said "if a is a square in k and d is a nonsquare in k."

Should the second condition assert!(a.sqrt().is_none()); be changed to assert!(!a.sqrt().is_none());? @kevaundray

kevaundray commented 2 years ago

I checked the paper Section 6, page 11, https://eprint.iacr.org/2008/013.pdf, it said "if a is a square in k and d is a nonsquare in k."

Should the second condition assert!(a.sqrt().is_none()); be changed to assert!(!a.sqrt().is_none());? @kevaundray

A little further it clarifies that we want d/a to be non-square.

weikengchen commented 2 years ago

@yelhousni @simonmasson @zhenfeizhang @asanso

Do you think it would be possible to sample another Bandersnatch with d/a being a quadratic residue?

asanso commented 2 years ago

@weikengchen it would be tough to be so lucky again :) So the answer is probably not

weikengchen commented 2 years ago

following up on the previous response from @yelhousni

So, as long as we work on a prime-order subgroup, the issue is gone?