From: Pauli Date: Sun, 20 Jul 2025 23:24:50 +0000 (+1000) Subject: rands: rename files for autogeneration of param parser X-Git-Tag: openssl-3.6.0-alpha1~167 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=14cb7e65717f9cd0b8b2589e0e3f387d9c444bc7;p=thirdparty%2Fopenssl.git rands: rename files for autogeneration of param parser Reviewed-by: Paul Yang Reviewed-by: Shane Lontis Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/28143) --- diff --git a/.gitignore b/.gitignore index 2298f35f493..73d95629661 100644 --- a/.gitignore +++ b/.gitignore @@ -119,6 +119,13 @@ providers/implementations/macs/hmac_prov.c providers/implementations/macs/kmac_prov.c providers/implementations/macs/poly1305_prov.c providers/implementations/macs/siphash_prov.c +providers/implementations/rands/drbg_ctr.c +providers/implementations/rands/drbg_hash.c +providers/implementations/rands/drbg_hmac.c +providers/implementations/rands/fips_crng_test.c +providers/implementations/rands/seed_src.c +providers/implementations/rands/seed_src_jitter.c +providers/implementations/rands/test_rng.c # error code files /crypto/err/openssl.txt.old diff --git a/build.info b/build.info index 8e02ed11bdf..db5a8a54716 100644 --- a/build.info +++ b/build.info @@ -81,7 +81,14 @@ DEPEND[]=include/openssl/asn1.h \ providers/implementations/macs/hmac_prov.c \ providers/implementations/macs/kmac_prov.c \ providers/implementations/macs/poly1305_prov.c \ - providers/implementations/macs/siphash_prov.c + providers/implementations/macs/siphash_prov.c \ + providers/implementations/rands/drbg_ctr.c \ + providers/implementations/rands/drbg_hash.c \ + providers/implementations/rands/drbg_hmac.c \ + providers/implementations/rands/fips_crng_test.c \ + providers/implementations/rands/seed_src.c \ + providers/implementations/rands/seed_src_jitter.c \ + providers/implementations/rands/test_rng.c GENERATE[include/openssl/asn1.h]=include/openssl/asn1.h.in GENERATE[include/openssl/asn1t.h]=include/openssl/asn1t.h.in @@ -150,6 +157,13 @@ DEPEND[providers/implementations/kdfs/argon2.c \ providers/implementations/macs/kmac_prov.c \ providers/implementations/macs/poly1305_prov.c \ providers/implementations/macs/siphash_prov.c \ + providers/implementations/rands/drbg_ctr.c \ + providers/implementations/rands/drbg_hash.c \ + providers/implementations/rands/drbg_hmac.c \ + providers/implementations/rands/fips_crng_test.c \ + providers/implementations/rands/seed_src.c \ + providers/implementations/rands/seed_src_jitter.c \ + providers/implementations/rands/test_rng.c \ include/openssl/core_names.h]=util/perl|OpenSSL/paramnames.pm GENERATE[providers/implementations/kdfs/argon2.c]=\ providers/implementations/kdfs/argon2.c.in @@ -219,6 +233,20 @@ GENERATE[providers/implementations/macs/poly1305_prov.c]=\ providers/implementations/macs/poly1305_prov.c.in GENERATE[providers/implementations/macs/siphash_prov.c]=\ providers/implementations/macs/siphash_prov.c.in +GENERATE[providers/implementations/rands/drbg_ctr.c]=\ + providers/implementations/rands/drbg_ctr.c.in +GENERATE[providers/implementations/rands/drbg_hash.c]=\ + providers/implementations/rands/drbg_hash.c.in +GENERATE[providers/implementations/rands/drbg_hmac.c]=\ + providers/implementations/rands/drbg_hmac.c.in +GENERATE[providers/implementations/rands/fips_crng_test.c]=\ + providers/implementations/rands/fips_crng_test.c.in +GENERATE[providers/implementations/rands/seed_src.c]=\ + providers/implementations/rands/seed_src.c.in +GENERATE[providers/implementations/rands/seed_src_jitter.c]=\ + providers/implementations/rands/seed_src_jitter.c.in +GENERATE[providers/implementations/rands/test_rng.c]=\ + providers/implementations/rands/test_rng.c.in GENERATE[include/openssl/core_names.h]=include/openssl/core_names.h.in IF[{- defined $target{shared_defflag} -}] diff --git a/providers/implementations/rands/drbg_ctr.c b/providers/implementations/rands/drbg_ctr.c.in similarity index 100% rename from providers/implementations/rands/drbg_ctr.c rename to providers/implementations/rands/drbg_ctr.c.in diff --git a/providers/implementations/rands/drbg_hash.c b/providers/implementations/rands/drbg_hash.c.in similarity index 100% rename from providers/implementations/rands/drbg_hash.c rename to providers/implementations/rands/drbg_hash.c.in diff --git a/providers/implementations/rands/drbg_hmac.c b/providers/implementations/rands/drbg_hmac.c.in similarity index 100% rename from providers/implementations/rands/drbg_hmac.c rename to providers/implementations/rands/drbg_hmac.c.in diff --git a/providers/implementations/rands/fips_crng_test.c b/providers/implementations/rands/fips_crng_test.c.in similarity index 100% rename from providers/implementations/rands/fips_crng_test.c rename to providers/implementations/rands/fips_crng_test.c.in diff --git a/providers/implementations/rands/seed_src.c b/providers/implementations/rands/seed_src.c.in similarity index 100% rename from providers/implementations/rands/seed_src.c rename to providers/implementations/rands/seed_src.c.in diff --git a/providers/implementations/rands/seed_src_jitter.c b/providers/implementations/rands/seed_src_jitter.c.in similarity index 100% rename from providers/implementations/rands/seed_src_jitter.c rename to providers/implementations/rands/seed_src_jitter.c.in diff --git a/providers/implementations/rands/test_rng.c b/providers/implementations/rands/test_rng.c.in similarity index 100% rename from providers/implementations/rands/test_rng.c rename to providers/implementations/rands/test_rng.c.in