Skip to content

Commit 4122783

Browse files
committed
f
1 parent 120b7ff commit 4122783

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

include/secp256k1_bulletproofs.h

+5-2
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,12 @@ extern "C" {
1111
#include <stdint.h>
1212

1313
/** A function-like macro returning the size, in bytes, of an uncompressed
14-
* Bulletproof proving that a value lies in the range [0, 2^(n_bits) - 1]
14+
* Bulletproof proving that a value lies in the range [0, 2^(n_bits) - 1]
15+
*
16+
* A proof contains: 65 bytes for (A, S); 65 for (T1, T2); 64 for (tau_x, mu)
17+
* followed by n_bits-many scalar pairs (l(i), r(i)).
1518
*/
16-
#define SECP256K1_BULLETPROOFS_UNCOMPRESSED_SIZE(n_bits) (194UL + (n_bits) * 64)
19+
#define SECP256K1_BULLETPROOFS_UNCOMPRESSED_SIZE(n_bits) (65UL + 65 + 64 + (n_bits) * 64)
1720

1821
/** Maximum size, in bytes, of an uncompressed rangeproof */
1922
extern const size_t SECP256K1_BULLETPROOFS_RANGEPROOF_UNCOMPRESSED_MAX_LENGTH;

src/modules/bulletproofs/main_impl.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ size_t secp256k1_bulletproofs_rangeproof_uncompressed_proof_length(const secp256
130130
if (n_bits > 64) {
131131
return 0;
132132
}
133-
return 2 * 65 + 64 + n_bits * 64;
133+
return SECP256K1_BULLETPROOFS_UNCOMPRESSED_SIZE(n_bits);
134134
}
135135

136136
int secp256k1_bulletproofs_rangeproof_uncompressed_prove(

0 commit comments

Comments
 (0)