X-Git-Url: http://www.average.org/gitweb/?p=pam_pcsc_cr.git;a=blobdiff_plain;f=crypto.c;h=105db4e727cf43220bfe4d341ed138230cc2480a;hp=6456932aaea06d7533775db27ff642be85588e44;hb=4a5da38dfd8b0236564ffe6b70eab1eeb399fff0;hpb=8e164eeff8c7d7f08b473d37ebb01093f574d6a2;ds=sidebyside diff --git a/crypto.c b/crypto.c index 6456932..105db4e 100644 --- a/crypto.c +++ b/crypto.c @@ -7,6 +7,7 @@ extern struct crypto_interface ossl_crypto_if; extern struct crypto_interface tom_crypto_if; +extern struct crypto_interface gnu_crypto_if; static struct crypto_interface *ifs[] = { #ifdef HAVE_OPENSSL @@ -14,6 +15,9 @@ static struct crypto_interface *ifs[] = { #endif #ifdef HAVE_TOMCRYPT &tom_crypto_if, +#endif +#ifdef HAVE_GCRYPT + &gnu_crypto_if, #endif (void*)0, };