LNPBP: 0004
Layer: Transaction (1)
Vertical: Client-validated data (3)
Title: Multi-message commitment scheme with zero-knowledge provable unique properties
Author: Dr Maxim Orlovsky <[email protected]>
Comments-URI: https://github.com/LNP-BP/lnpbps/issues/8
Status: Proposal
Type: Standards Track
Created: 2019-10-28
License: CC0-1.0
The standard defines a way to commit to a multiple independent messages with a single digest such that the fact of each particular commitment and a protocol under which the commitment is made may be proven without exposing the information about the other messages and used protocols.
LNPBP-3 defines a standard for embedding cryptographic commitment into bitcoin transaction in a deterministic provable way [2]. The standard is based on LNPBP-1 public key tweaking procedure [1], which prevents multiple commitments inside a tweak. However it is possible that some protocol may require to commit to a number of messages within a single transaction and public key with the requirement that some dedicated information from this messages (like the message type) should be unique across the whole message set. For instance, this is required for state updates, where the updates are separated into different blocks (messages) and kept private, such that a single party will know information about a single update and should not be exposed any information about the rest. However, in such a case, there should be a proof that other state updates does not affect the state of the analyzed update, excluding state collisions. In such a setup, each state may be assigned a unique integer identifier (like cryptographic digest) and a special form of zero-knowledge proof should be utilized to proof the fact that all of the states are different without exposing the actual state ids. While this is impossible at the level of LNPBP-3 & LNPBP-1 standards, the current proposal defines a procedure for structuring multiple independent messages in a privacy-preserving (zero-knowledge) way, allowing that some properties of the committed messages may be proven in a zero-knowledge way, i.e. without revealing any information about the the source messages or the properties themselves.
The protocol follows dea of Bloom filters [5], which are already used for keeping confidentiality of the information requested from Bitcoin Core by SPV clients [6].
Multiple commitments under different protocols are identified with a unique per-protocol 32-byte identifiers (like tagged
hashes of protocol name and/or characteristic parameters) and serialized into a 32-byte slots within N * 32
byte buffer
such as N >> M
, where M
is the number of the individual commitments. The rest of slots are filled with random data
deterministically generated from a single entropy source. The position n
for a commitment with the identifier id
is computed as n = id mod N
, guaranteeing that no two commitments under the same protocol with a given id
may be
simultaneously present.
Protocol-1 -+ Protocol-2 -+
MSG-1 | V MSG-2 | V
V V Id-1 V V Id-2
[Tagged SHA256] V [Tagged SHA256] V
| [mod 3] | [mod 3]
| V | V
V 1 V 3
+----------------------+----------------------+----------------------+
| MSG-1 commitment | Random hash | MSG-2 commitment |
+----------------------+----------------------+----------------------+
0 byte 32 byte 64 byte
For a given set of M
messages msg1
..msgM
under protocols with corresponding unique ids id
..idM
the commitment
procedure runs as follows:
- Pick a 32-bytes of entropy from uniform entropy source (like the same which is used for generating private keys)
and compute SHA256-tagged hash according to BIP-340 tagged hash procedure [4] with prefix
LNPBP4:random
. - Generate a corresponding public key on Secp256k1 elliptic curve (
R
) and compute it's 256-bit bitcoin hash (HASH256(R)
). - Pick a number
N >> M
, for instanceN = M * 2
and allocate32 * N
byte buffer. - For each of the messages:
- create a corresponding cryptographic commitment
cI
according to the per-message protocol, - compute it's BIP-340 tagged hash [4] using the value of the protocol id
idI
as the protocol-specific tag, - compute
n = idI mod N
, - if the slot
n
is not used, serialize acI
hash into it using bitcoin-style hash serialization format; otherwise go to step 3 and generate a newN' >> N
.
- create a corresponding cryptographic commitment
- For each of the slots that remain empty (the slot number is represented by
j
):- tweak public key
R
with it's own hashH(R)
j
times:Rj = R + J * H(R) * G)
- compute a 256-bit bitcoin hash of
Rj
and serialize it into the slotj
using bitcoin-style hash serialization format.
- tweak public key
- Compute commitment to the resulting buffer with LNPBP-1, LNPBP-2 or other protocol using
LNPBP4
as the protocol-specific tag.
A party needing to reveal the proofs for the commitment to the message msgA
under this scheme and conceal the rest
of the messages and protocols participating in the commitment has to publish the following data:
- A source of the message
msgA
and information about it's protocol with ididA
. - A full byte sequence of the buffer resulting from the step 5 of the commitment procedure.
A party needing to reveal the proofs for all commitments to all of the messages and also prove that there were no other commitments made must publish the following data:
- A source of the messages
msg1
..msgM
and information about their protocols with idid1
..idM
. - A full byte sequence of the buffer resulting from the step 5 of the commitment procedure.
- An original public key
R
from the step 2 of the commitment procedure.
A party provided with the data from the partial reveal procedure and wishing to verify the commitment to the message MUST use the following procedure:
- Compute
n = idA mod N
, whereidA
is the message-specific protocol id andN
is the length of the commitment buffer in bytes divided on 32. - Compute commitment to the message by following the procedure from the step 3 of the commitment scheme
- Verify that the resulting 32-bit commitment is equal to the commitment stored in
n
's 32-byte slot of the commitment buffer; fail verification otherwise.
A party provided with the data from the reveal with full disclosure procedure may verify
that the provided commitment buffer contains only commitment to the provided messages (and no other commitments) by
allocating a new empty (all bytes set to 0x00
) commitment buffer of the same length as the revealed commitment buffer,
and re-running steps 4-6 from the commitment procedure. If the new buffer match per-byte the revealed
commitment buffer, then the verification succeeded; otherwise it has failed.
TBD
TBD
TBD
- Maxim Orlovsky, et al. Key tweaking: collision-resistant elliptic curve-based commitments (LNPBP-1 Standard). https://github.com/LNP-BP/lnpbps/blob/master/lnpbp-0001.md
- Maxim Orlovsky, et al. Deterministic embedding of LNPBP1-type commitments into
scriptPubkey
of a transaction output (LNPBP-2 Standard). https://github.com/LNP-BP/lnpbps/blob/master/lnpbp-0002.md - Giacomo Zucco, et al. Deterministic definition of transaction output containing cryptographic commitment (LNPBP-3 Standard). https://github.com/LNP-BP/lnpbps/blob/master/lnpbp-0003.md
- Pieter Wuille, et al. BIP-340: Schnorr Signatures for secp256k1. https://github.com/bitcoin/bips/blob/master/bip-0340.mediawiki
- Bloom, Burton H. (1970), "Space/Time Trade-offs in Hash Coding with Allowable Errors", Communications of the ACM, 13 (7): 422–426, doi:10.1145/362686.362692. https://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.641.9096
- Mike Hearn, Matt Corallo. BIP-37: Connection Bloom filtering. https://github.com/bitcoin/bips/blob/master/bip-0037.mediawiki
This document is licensed under the Creative Commons CC0 1.0 Universal license.
TBD