From 31c44a758fcedefa160fb090e85c296447e48e84 Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Fri, 21 Feb 2025 11:06:17 +0100 Subject: [PATCH] test-vectors: Add a soft dependency on DRBG used for KEM tests Depending on the loaded plugins, it's not necessary. So it's not a hard dependency. --- src/libstrongswan/plugins/test_vectors/test_vectors_plugin.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libstrongswan/plugins/test_vectors/test_vectors_plugin.c b/src/libstrongswan/plugins/test_vectors/test_vectors_plugin.c index 6c09271bd..3c5ef5c27 100644 --- a/src/libstrongswan/plugins/test_vectors/test_vectors_plugin.c +++ b/src/libstrongswan/plugins/test_vectors/test_vectors_plugin.c @@ -161,6 +161,7 @@ METHOD(plugin_t, get_features, int, static plugin_feature_t f[] = { PLUGIN_NOOP, PLUGIN_PROVIDE(CUSTOM, "test-vectors"), + PLUGIN_SDEPEND(DRBG, DRBG_CTR_AES256), }; *features = f; return countof(f);