File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -429,7 +429,7 @@ void harness(void) {
429
429
mlk_poly * a;
430
430
uint8_t * r;
431
431
432
- /* Contracts for this function are in poly .h * /
432
+ /* Contracts for this function are in compress .h * /
433
433
mlk_poly_tobytes(r, a);
434
434
}
435
435
```
@@ -510,7 +510,7 @@ and so on for the other two statements in the loop body.
510
510
With those changes, CBMC completes the proof in about 10 seconds:
511
511
512
512
```
513
- cd proofs/cbmc/mlk_poly_tobytes
513
+ cd proofs/cbmc/poly_tobytes
514
514
make result
515
515
cat logs/result.txt
516
516
```
@@ -524,12 +524,12 @@ We can also use the higher-level Python script to prove just that one function:
524
524
525
525
```
526
526
cd proofs/cbmc
527
- MLKEM_K=3 ./run-cbmc-proofs.py --summarize -j$(nproc) -p mlk_poly_tobytes
527
+ MLKEM_K=3 ./run-cbmc-proofs.py --summarize -j$(nproc) -p poly_tobytes
528
528
```
529
529
yields
530
530
```
531
- | Proof | Status |
532
- | --------------| ---------|
531
+ | Proof | Status |
532
+ | ------------------ | ---------|
533
533
| mlk_poly_tobytes | Success |
534
534
535
535
```
You can’t perform that action at this time.
0 commit comments