Security
Headlines
HeadlinesLatestCVEs

Headline

GHSA-f6hc-9g49-xmx7: nistec has Incorrect Calculation in Multiplication of unreduced P-256 scalars

Multiplication of certain unreduced P-256 scalars produce incorrect results.

There are no protocols known at this time that can be attacked due to this.

From the fix commit notes:

Unlike the rest of nistec, the P-256 assembly doesn’t use complete addition formulas, meaning that p256PointAdd[Affine]Asm won’t return the correct value if the two inputs are equal.

This was (undocumentedly) ignored in the scalar multiplication loops because as long as the input point is not the identity and the scalar is lower than the order of the group, the addition inputs can’t be the same.

As part of the math/big rewrite, we went however from always reducing the scalar to only checking its length, under the incorrect assumption that the scalar multiplication loop didn’t require reduction.

ghsa

Multiplication of certain unreduced P-256 scalars produce incorrect results.

There are no protocols known at this time that can be attacked due to this.

From the fix commit notes:

Unlike the rest of nistec, the P-256 assembly doesn’t use complete
addition formulas, meaning that p256PointAdd[Affine]Asm won’t return the
correct value if the two inputs are equal.

This was (undocumentedly) ignored in the scalar multiplication loops
because as long as the input point is not the identity and the scalar is
lower than the order of the group, the addition inputs can’t be the same.

As part of the math/big rewrite, we went however from always reducing
the scalar to only checking its length, under the incorrect assumption
that the scalar multiplication loop didn’t require reduction.

References

  • FiloSottile/nistec@c58aa12
  • https://go.dev/issue/58647
  • https://pkg.go.dev/vuln/GO-2023-1595

Related news

CVE-2023-24533: crypto/internal/nistec: reduce P-256 scalar · FiloSottile/nistec@c58aa12

Multiplication of certain unreduced P-256 scalars produce incorrect results. There are no protocols known at this time that can be attacked due to this.