X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=engines%2Fe_nuron.c;h=4c2537cbc30d6f7b97128aad0ac663efbd785574;hb=6dcb6bf1c108ea46bede61f63276681bcb81d774;hp=4df6f0495a58c50b452c065a4deee724d31cd44c;hpb=46ef873f0b3c04b6415cddac5d4a7b27b53cc482;p=oweals%2Fopenssl.git diff --git a/engines/e_nuron.c b/engines/e_nuron.c index 4df6f0495a..4c2537cbc3 100644 --- a/engines/e_nuron.c +++ b/engines/e_nuron.c @@ -62,7 +62,16 @@ #include #include #include - +#ifndef OPENSSL_NO_RSA +#include +#endif +#ifndef OPENSSL_NO_DSA +#include +#endif +#ifndef OPENSSL_NO_DH +#include +#endif +#include #ifndef OPENSSL_NO_HW #ifndef OPENSSL_NO_HW_NURON @@ -239,11 +248,13 @@ static int nuron_mod_exp_dsa(DSA *dsa, BIGNUM *r, BIGNUM *a, #endif /* This function is aliased to mod_exp (with the mont stuff dropped). */ +#ifndef OPENSSL_NO_RSA static int nuron_mod_exp_mont(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, const BIGNUM *m, BN_CTX *ctx, BN_MONT_CTX *m_ctx) { return nuron_mod_exp(r, a, p, m, ctx); } +#endif #ifndef OPENSSL_NO_DH /* This function is aliased to mod_exp (with the dh and mont dropped). */