@@ -30,7 +30,11 @@ use crate::{
30
30
// secp256r1 Fq
31
31
static FQ_MODULUS : LazyLock < U256 > =
32
32
LazyLock :: new ( || word ! ( "0xffffffff00000000ffffffffffffffffbce6faada7179e84f3b9cac2fc632551" ) ) ;
33
-
33
+
34
+ // secp256r1 Fp
35
+ static FP_MODULUS : LazyLock < U256 > =
36
+ LazyLock :: new ( || word ! ( "0xffffffff00000001000000000000000000000000ffffffffffffffffffffffff" ) ) ;
37
+
34
38
#[ derive( Clone , Debug ) ]
35
39
pub struct P256VerifyGadget < F > {
36
40
input_bytes_rlc : Cell < F > ,
@@ -44,12 +48,16 @@ pub struct P256VerifyGadget<F> {
44
48
sig_r_keccak_rlc : Cell < F > ,
45
49
sig_s_keccak_rlc : Cell < F > ,
46
50
// recovered_addr_keccak_rlc: RandomLinearCombination<F, N_BYTES_ACCOUNT_ADDRESS>,
51
+ pubkey_x_keccak_rlc : Cell < F > ,
52
+ pubkey_y_keccak_rlc : Cell < F > ,
47
53
48
54
msg_hash_raw : Word < F > ,
49
55
msg_hash : Word < F > ,
50
56
fq_modulus : Word < F > ,
51
57
msg_hash_mod : ModGadget < F , true > ,
52
58
59
+ fp_modulus : Word < F > ,
60
+
53
61
sig_r : Word < F > ,
54
62
sig_r_canonical : LtWordGadget < F > ,
55
63
sig_s : Word < F > ,
@@ -85,17 +93,19 @@ impl<F: Field> ExecutionGadget<F> for P256VerifyGadget<F> {
85
93
msg_hash_keccak_rlc,
86
94
sig_r_keccak_rlc,
87
95
sig_s_keccak_rlc,
88
- recovered_addr_keccak_rlc,
96
+ // recovered_addr_keccak_rlc,
89
97
) = (
90
98
cb. query_cell_phase2 ( ) ,
91
99
cb. query_cell_phase2 ( ) ,
92
100
cb. query_cell_phase2 ( ) ,
93
- cb. query_keccak_rlc ( ) ,
101
+ // cb.query_keccak_rlc(),
94
102
) ;
95
103
96
104
let msg_hash_raw = cb. query_word_rlc ( ) ;
97
105
let msg_hash = cb. query_word_rlc ( ) ;
98
106
let fq_modulus = cb. query_word_rlc ( ) ;
107
+ let fp_modulus = cb. query_word_rlc ( ) ;
108
+
99
109
let msg_hash_mod = ModGadget :: construct ( cb, [ & msg_hash_raw, & fq_modulus, & msg_hash] ) ;
100
110
101
111
let sig_r = cb. query_word_rlc ( ) ;
@@ -104,6 +114,11 @@ impl<F: Field> ExecutionGadget<F> for P256VerifyGadget<F> {
104
114
let sig_s_canonical = LtWordGadget :: construct ( cb, & sig_s, & fq_modulus) ;
105
115
let r_s_canonical = and:: expr ( [ sig_r_canonical. expr ( ) , sig_s_canonical. expr ( ) ] ) ;
106
116
117
+ let pk_x = cb. query_word_rlc ( ) ;
118
+ let pk_y = cb. query_word_rlc ( ) ;
119
+ let pk_x_canonical = LtWordGadget :: construct ( cb, & pk_x, & fp_modulus) ;
120
+ let pk_y_canonical = LtWordGadget :: construct ( cb, & pk_y, & fp_modulus) ;
121
+
107
122
cb. require_equal (
108
123
"msg hash cells assigned incorrectly" ,
109
124
msg_hash_keccak_rlc. expr ( ) ,
@@ -149,6 +164,11 @@ impl<F: Field> ExecutionGadget<F> for P256VerifyGadget<F> {
149
164
fq_modulus. expr ( ) ,
150
165
cb. word_rlc :: < N_BYTES_WORD > ( FQ_MODULUS . to_le_bytes ( ) . map ( |b| b. expr ( ) ) ) ,
151
166
) ;
167
+ cb. require_equal (
168
+ "Secp256r1::Fp modulus assigned correctly" ,
169
+ fp_modulus. expr ( ) ,
170
+ cb. word_rlc :: < N_BYTES_WORD > ( FP_MODULUS . to_le_bytes ( ) . map ( |b| b. expr ( ) ) ) ,
171
+ ) ;
152
172
153
173
let [ is_success, callee_address, is_root, call_data_offset, call_data_length, return_data_offset, return_data_length] =
154
174
[
@@ -241,17 +261,13 @@ impl<F: Field> ExecutionGadget<F> for P256VerifyGadget<F> {
241
261
+ ( sig_r_keccak_rlc. expr ( ) * r_pow_32)
242
262
+ sig_s_keccak_rlc. expr ( ) ,
243
263
) ;
244
- // RLC of output bytes always equals RLC of the recovered address.
245
- cb. require_equal (
246
- "output bytes (RLC) = recovered address" ,
247
- output_bytes_rlc. expr ( ) ,
248
- recovered_addr_keccak_rlc. expr ( ) ,
249
- ) ;
250
- // If the address was not recovered, RLC(address) == RLC(output) == 0.
251
- cb. condition ( not:: expr ( recovered. expr ( ) ) , |cb| {
252
- cb. require_zero ( "output bytes == 0" , output_bytes_rlc. expr ( ) ) ;
253
- } ) ;
254
-
264
+ // TODO: constrain output first byte is bool .
265
+ // cb.require_equal(
266
+ // "output bytes (RLC) = recovered address",
267
+ // output_bytes_rlc.expr(),
268
+ // recovered_addr_keccak_rlc.expr(),
269
+ // );
270
+
255
271
let restore_context = super :: gen_restore_context (
256
272
cb,
257
273
is_root. expr ( ) ,
@@ -285,6 +301,10 @@ impl<F: Field> ExecutionGadget<F> for P256VerifyGadget<F> {
285
301
sig_s,
286
302
sig_s_canonical,
287
303
304
+ pk_x,
305
+ pk_x_canonical,
306
+ pk_y,
307
+ pk_y_canonical,
288
308
is_success,
289
309
callee_address,
290
310
is_root,
@@ -305,7 +325,7 @@ impl<F: Field> ExecutionGadget<F> for P256VerifyGadget<F> {
305
325
call : & Call ,
306
326
step : & ExecStep ,
307
327
) -> Result < ( ) , Error > {
308
- if let Some ( PrecompileAuxData :: Ecrecover ( aux_data) ) = & step. aux_data {
328
+ if let Some ( PrecompileAuxData :: P256Verify ( aux_data) ) = & step. aux_data {
309
329
self . input_bytes_rlc . assign (
310
330
region,
311
331
offset,
@@ -330,9 +350,7 @@ impl<F: Field> ExecutionGadget<F> for P256VerifyGadget<F> {
330
350
. keccak_input ( )
331
351
. map ( |r| rlc:: value ( aux_data. return_bytes . iter ( ) . rev ( ) , r) ) ,
332
352
) ?;
333
- let recovered = !aux_data. recovered_addr . is_zero ( ) ;
334
- self . recovered
335
- . assign ( region, offset, Value :: known ( F :: from ( recovered as u64 ) ) ) ?;
353
+ // check is_valid of sig ?
336
354
self . msg_hash_keccak_rlc . assign (
337
355
region,
338
356
offset,
@@ -341,14 +359,7 @@ impl<F: Field> ExecutionGadget<F> for P256VerifyGadget<F> {
341
359
. keccak_input ( )
342
360
. map ( |r| rlc:: value ( & aux_data. msg_hash . to_le_bytes ( ) , r) ) ,
343
361
) ?;
344
- self . sig_v_keccak_rlc . assign (
345
- region,
346
- offset,
347
- region
348
- . challenges ( )
349
- . keccak_input ( )
350
- . map ( |r| rlc:: value ( & aux_data. sig_v . to_le_bytes ( ) , r) ) ,
351
- ) ?;
362
+
352
363
self . sig_r_keccak_rlc . assign (
353
364
region,
354
365
offset,
@@ -377,6 +388,8 @@ impl<F: Field> ExecutionGadget<F> for P256VerifyGadget<F> {
377
388
. assign ( region, offset, Some ( remainder. to_le_bytes ( ) ) ) ?;
378
389
self . fq_modulus
379
390
. assign ( region, offset, Some ( FQ_MODULUS . to_le_bytes ( ) ) ) ?;
391
+ self . fp_modulus
392
+ . assign ( region, offset, Some ( FP_MODULUS . to_le_bytes ( ) ) ) ?;
380
393
self . msg_hash_mod . assign (
381
394
region,
382
395
offset,
0 commit comments