diff options
-rw-r--r-- | src/crypto/rsa.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/crypto/rsa.c b/src/crypto/rsa.c index 7ac0bca59..2c5cf67dd 100644 --- a/src/crypto/rsa.c +++ b/src/crypto/rsa.c @@ -635,3 +635,9 @@ struct pubkey_algorithm rsa_algorithm = { .final = rsa_final, .match = rsa_match, }; + +/* Drag in objects via rsa_algorithm */ +REQUIRING_SYMBOL ( rsa_algorithm ); + +/* Drag in crypto configuration */ +REQUIRE_OBJECT ( config_crypto ); |