Skip to content

Commit 03e125e

Browse files
authored
Merge pull request #568 from pq-code-package/update-BIBLIOGRAPHY-md
autogen: fix incorrect `dry_run` handling in `gen_bib_file()`
2 parents 6a44299 + ebb5de4 commit 03e125e

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

BIBLIOGRAPHY.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ source code and documentation.
1414
- National Institute of Standards and Technology
1515
* URL: https://csrc.nist.gov/projects/cryptographic-module-validation-program/fips-140-3-ig-announcements
1616
* Referenced from:
17+
- [examples/bring_your_own_fips202/mldsa_native/config.h](examples/bring_your_own_fips202/mldsa_native/config.h)
18+
- [examples/bring_your_own_fips202/mldsa_native/sign.c](examples/bring_your_own_fips202/mldsa_native/sign.c)
1719
- [integration/liboqs/config_aarch64.h](integration/liboqs/config_aarch64.h)
1820
- [integration/liboqs/config_c.h](integration/liboqs/config_c.h)
1921
- [integration/liboqs/config_x86_64.h](integration/liboqs/config_x86_64.h)
@@ -45,6 +47,15 @@ source code and documentation.
4547
* URL: https://csrc.nist.gov/pubs/fips/204/final
4648
* Referenced from:
4749
- [README.md](README.md)
50+
- [examples/bring_your_own_fips202/mldsa_native/common.h](examples/bring_your_own_fips202/mldsa_native/common.h)
51+
- [examples/bring_your_own_fips202/mldsa_native/config.h](examples/bring_your_own_fips202/mldsa_native/config.h)
52+
- [examples/bring_your_own_fips202/mldsa_native/ntt.h](examples/bring_your_own_fips202/mldsa_native/ntt.h)
53+
- [examples/bring_your_own_fips202/mldsa_native/poly.c](examples/bring_your_own_fips202/mldsa_native/poly.c)
54+
- [examples/bring_your_own_fips202/mldsa_native/poly_kl.c](examples/bring_your_own_fips202/mldsa_native/poly_kl.c)
55+
- [examples/bring_your_own_fips202/mldsa_native/polyvec.c](examples/bring_your_own_fips202/mldsa_native/polyvec.c)
56+
- [examples/bring_your_own_fips202/mldsa_native/rounding.h](examples/bring_your_own_fips202/mldsa_native/rounding.h)
57+
- [examples/bring_your_own_fips202/mldsa_native/sign.c](examples/bring_your_own_fips202/mldsa_native/sign.c)
58+
- [examples/bring_your_own_fips202/mldsa_native/sign.h](examples/bring_your_own_fips202/mldsa_native/sign.h)
4859
- [mldsa/common.h](mldsa/common.h)
4960
- [mldsa/config.h](mldsa/config.h)
5061
- [mldsa/fips202/fips202.c](mldsa/fips202/fips202.c)
@@ -130,6 +141,9 @@ source code and documentation.
130141
* URL: https://github.com/pq-crystals/dilithium/tree/master/ref
131142
* Referenced from:
132143
- [README.md](README.md)
144+
- [examples/bring_your_own_fips202/mldsa_native/ntt.c](examples/bring_your_own_fips202/mldsa_native/ntt.c)
145+
- [examples/bring_your_own_fips202/mldsa_native/poly.c](examples/bring_your_own_fips202/mldsa_native/poly.c)
146+
- [examples/bring_your_own_fips202/mldsa_native/poly_kl.c](examples/bring_your_own_fips202/mldsa_native/poly_kl.c)
133147
- [mldsa/ntt.c](mldsa/ntt.c)
134148
- [mldsa/poly.c](mldsa/poly.c)
135149
- [mldsa/poly_kl.c](mldsa/poly_kl.c)
@@ -205,6 +219,7 @@ source code and documentation.
205219
- Damien Stehlé
206220
* URL: https://pq-crystals.org/dilithium/data/dilithium-specification-round3-20210208.pdf
207221
* Referenced from:
222+
- [examples/bring_your_own_fips202/mldsa_native/sign.c](examples/bring_your_own_fips202/mldsa_native/sign.c)
208223
- [mldsa/sign.c](mldsa/sign.c)
209224

210225
### `libmceliece`
@@ -215,6 +230,7 @@ source code and documentation.
215230
- Tung Chou
216231
* URL: https://lib.mceliece.org/
217232
* Referenced from:
233+
- [examples/bring_your_own_fips202/mldsa_native/ct.h](examples/bring_your_own_fips202/mldsa_native/ct.h)
218234
- [mldsa/ct.h](mldsa/ct.h)
219235

220236
### `m1cycles`
@@ -247,6 +263,7 @@ source code and documentation.
247263
- Daniel J. Bernstein
248264
* URL: https://groups.google.com/a/list.nist.gov/g/pqc-forum/c/hqbtIGFKIpU/m/H14H0wOlBgAJ
249265
* Referenced from:
266+
- [examples/bring_your_own_fips202/mldsa_native/ct.h](examples/bring_your_own_fips202/mldsa_native/ct.h)
250267
- [mldsa/ct.h](mldsa/ct.h)
251268

252269
### `supercop`

scripts/autogen

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1711,7 +1711,7 @@ def gen_citations(dry_run=False):
17111711
"Add a citation or remove from BIBLIOGRAPHY.yml."
17121712
)
17131713

1714-
gen_bib_file(bibliography, dry_run=False)
1714+
gen_bib_file(bibliography, dry_run=dry_run)
17151715

17161716

17171717
def _main():

0 commit comments

Comments
 (0)