Discrete Log Equality

Implementation of discrete log equality proofs for curves implementing ff/group. There is also a highly experimental cross-group DLEq proof, under the experimental feature, which has no formal proofs available yet is available here regardless. This library has NOT undergone auditing.

Cross-Group DLEq

The present cross-group DLEq is based off MRL-0010, which isn't computationally correct as while it proves both keys have the same discrete logarithm for their G'/H' component, it doesn't prove a lack of a G/H component. Accordingly, it was augmented with a pair of Schnorr Proof of Knowledges, proving a known G'/H' component, guaranteeing a lack of a G/H component (assuming an unknown relation between G/H and G'/H').

The challenges for the ring signatures were also merged, removing one-element from each bit's proof with only a slight reduction to challenge security (as instead of being uniform over each scalar field, they're uniform over the mutual bit capacity of each scalar field). This reduction is identical to the one applied to the proved-for scalar, and accordingly should not reduce overall security. It does create a lack of domain separation, yet that shouldn't be an issue.

The following variants are available:

The following numbers are from benchmarks performed with k256/curve25519_dalek on a Intel i7-118567:

| Algorithm | Size | Verification Time | |--------------------|-------------------------|-------------------| | ClassicLinear | 56829 bytes (+27%) | 157ms (0%) | | ConciseLinear | 44607 bytes (Reference) | 156ms (Reference) | | EfficientLinear | 65145 bytes (+46%) | 122ms (-22%) | | CompromiseLinear | 48765 bytes (+9%) | 137ms (-12%) |

CompromiseLinear is the best choice by only being marginally sub-optimal regarding size, yet still achieving most of the desired performance improvements. That said, neither the original postulation (which had flaws) nor any construction here has been proven nor audited. Accordingly, they are solely experimental, and none are recommended.

All proofs are suffixed "Linear" in the hope a logarithmic proof makes itself available, which would likely immediately become the most efficient option.