You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/runbook/update-circuit-keys/README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,13 +29,13 @@ Reviewers:
29
29
Commands to run the integrity tests:
30
30
31
31
```bash
32
-
cargo test -p mithril-stm --features future_snark --release integrity_test_for_non_recursive_production_key -- --ignored
32
+
cargo test -p mithril-stm --features future_snark,rustls --release integrity_test_for_non_recursive_production_key -- --ignored
33
33
```
34
34
35
35
and
36
36
37
37
```bash
38
-
cargo test -p mithril-stm --features future_snark --release integrity_test_for_recursive_production_key -- --ignored
38
+
cargo test -p mithril-stm --features future_snark,rustls --release integrity_test_for_recursive_production_key -- --ignored
39
39
```
40
40
41
41
Release manager:
@@ -52,13 +52,13 @@ The author needs to update the golden value of the verification keys in the gold
52
52
To update the production circuit verification keys, one needs to run the following commands:
53
53
54
54
```bash
55
-
cargo test -p mithril-stm --features future_snark --release write_non_recursive_circuit_verification_key_for_production_to_file -- --ignored
55
+
cargo test -p mithril-stm --features future_snark,rustls --release write_non_recursive_circuit_verification_key_for_production_to_file -- --ignored
56
56
```
57
57
58
58
and
59
59
60
60
```bash
61
-
cargo test -p mithril-stm --features future_snark --release write_recursive_circuit_verification_key_for_production_to_file -- --ignored
61
+
cargo test -p mithril-stm --features future_snark,rustls --release write_recursive_circuit_verification_key_for_production_to_file -- --ignored
62
62
```
63
63
64
64
that will update the files holding the values of the production keys, `mithril-stm/src/circuits/halo2/non_recursive_circuit_verification_key_for_production.bin` and `mithril-stm/src/circuits/halo2_ivc/recursive_circuit_verification_key_for_production.bin`.
Copy file name to clipboardExpand all lines: mithril-stm/README.md
+13-5Lines changed: 13 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -43,6 +43,14 @@ cd mithril-stm
43
43
cargo build --release
44
44
```
45
45
46
+
## TLS backend
47
+
48
+
The `future_snark` feature downloads the SRS of the trusted setup over HTTPS and lets the caller pick the TLS backend. Enable exactly one of the `rustls` or `native-tls` features along with it:
0 commit comments