* [PATCH] acme: add missing include for Crypt::OpenSSL::Random
@ 2026-04-09 11:10 Fiona Ebner
0 siblings, 0 replies; only message in thread
From: Fiona Ebner @ 2026-04-09 11:10 UTC (permalink / raw)
To: pve-devel
While this seems to not happen or be rare in practice, the
import_random_seed() function from Crypt::OpenSSL::RSA might call into
Crypt::OpenSSL::Random::random_bytes() if the random number generator
is not already seeded enough.
Signed-off-by: Fiona Ebner <f.ebner@proxmox.com>
---
src/PVE/ACME.pm | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/PVE/ACME.pm b/src/PVE/ACME.pm
index f1e9bb7..e6fb9c2 100644
--- a/src/PVE/ACME.pm
+++ b/src/PVE/ACME.pm
@@ -15,6 +15,7 @@ use Digest::SHA qw(sha256 sha256_hex hmac_sha256);
use HTTP::Request;
use LWP::UserAgent;
+use Crypt::OpenSSL::Random;
use Crypt::OpenSSL::RSA;
use PVE::Certificate;
--
2.47.3
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2026-04-09 11:11 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-04-09 11:10 [PATCH] acme: add missing include for Crypt::OpenSSL::Random Fiona Ebner
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.