]> www.average.org Git - pam_pcsc_cr.git/blobdiff - crypto.c
PAM module works
[pam_pcsc_cr.git] / crypto.c
index 6456932aaea06d7533775db27ff642be85588e44..105db4e727cf43220bfe4d341ed138230cc2480a 100644 (file)
--- 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,
 };