Implementation of Dlog VE in Javascript (with Rust bindings) on top of the elliptic curve Secp256k1.
- Install nightly Rust (tested on 1.36.0-nightly).
- Install the package:
$ yarn add dlog-verifiable-enc
OR clone the repository:
$ git clone https://github.com/KZen-networks/dlog-verifiable-enc
$ cd ./dlog-verifiable-enc
$ yarn install
$ yarn run build
$ mocha
Composed of the following structure:
{
witness: Witness,
ciphertexts: Helgamalsegmented
}
Encrypt a 32-byte scalar secret
using 64-byte EC public key encryptionKey
.
Decrypt ciphertexts (encrypted segments) ciphertexts
using 32-byte scalar decryptionKey
to get
a 32-byte scalar.
Prove that encryptionResult
is an encryption of a discrete logarithm under a 64-byte EC public key encryptionKey
.
ve.verify(proof: Proof, encryptionKey: Buffer, publicKey: Buffer, ciphertexts: Helgamalsegmented): boolean
Verify that proof
proves that ciphertexts
are a result of an encryption of a discrete logarithm of a 64-byte EC public key publicKey
under the 64-byte EC public key encryptionKey
import {ve} from 'dlog-verifiable-enc';
import {ec as EC} from 'elliptic';
const ec = new EC('secp256k1');
import assert from 'assert';
// generate encryption/decryption EC key pair
const encKeyPair = ec.genKeyPair();
const decryptionKey = encKeyPair
.getPrivate()
.toBuffer();
const encryptionKey = Buffer.from(
encKeyPair
.getPublic()
.encode('hex', false)
.substr(2), // (x,y);
'hex');
// generate EC key pair (the discrete logarithm to be encrypted)
const keyPair = ec.genKeyPair();
const secretKey = keyPair
.getPrivate()
.toBuffer();
const publicKey = Buffer.from(
keyPair
.getPublic()
.encode('hex', false)
.substr(2), // (x,y)
'hex');
const encryptionResult = ve.encrypt(encryptionKey, secretKey);
const secretKeyNew = ve.decrypt(decryptionKey, encryptionResult.ciphertexts);
assert(secretKeyNew.equals(secretKey));
const proof = ve.prove(encryptionKey, encryptionResult);
const isVerified = ve.verify(proof, encryptionKey, publicKey, encryptionResult.ciphertexts);
assert(isVerified);
The construction is inspired by Practical Verifiable Encryption and Decryption of Discrete Logarithms [CS03]. The encryption is done segment-by-segment which enables also a use case of fair swap of secrets.
choose random scalar y
and compute its public key Y = y*G
For input (x,Q,Y)
such that Q = x*G
we want to encrypt x
:Divide x
into m
eqaul small (lets say 8 bit) segments (last segment is padded with zeros). For each segment k
: compute homomorphic ElGamal encryption: {D_k ,E_k = [x]_k*G + r_k*Y , r_k * G}
for random r_k
Given a secret key y
, for every pair {D_k ,E_k}
do:
[x]_k*G = D_k - y*E_k
- find DLog of
[x]_k*G
Finally combine all decrypted segments to get x
- For each
D_k
the prover publishes a Bulletproof range proof [BBBPWM]. This proves thatD_k
is a Pedersen commitment with value smaller than2^l
wherel
is the segment size in bits. - For each
k
: The Prover publishes a zero knowledge proof that{D_k,E_k}
is correct ElGamal encryption, witness is(x, r_k)
. - The Prover publishes a zero knowledge proof that
{wsum{D_k}, wsum{E_k}}
is correct ElGamal encryption, witness is(x, wsum{r_k})
. we usewsum
to note a weighted sum. This sigma protocol also usesQ
in the statement and the prover shows in zk that DLog ofQ
is the same witness.
Run the verifer of all the zk proofs. Accept only if all value to true
(*) Both 2) and 3) are standard proof of knowledge sigma protocols, we use Fiat Shamir transforom to get their non interactive versions. The protocols can be found in Curv library(2,3)
Feel free to reach out or join the ZenGo-X Telegram for discussions on code and research.
[CS03] Practical Verifiable Encryption and Decryption of Discrete Logarithms , Jan Camenisch and Victor Shoup, CRYPTO 2003
[BBBPWM] Bulletproofs: Short Proofs for Confidential Transactions and More , Benedikt B¨unz, Jonathan Bootle, Dan Boneh, Andrew Poelstra, Pieter Wuille and Greg Maxwell, IEEE S&P 2018