Extended KeyResolver to handle CRLs.
[shibboleth/cpp-xmltooling.git] / xmltooling / signature / impl / KeyResolver.cpp
index 65925e0..994d900 100644 (file)
@@ -52,3 +52,13 @@ vector<XSECCryptoX509*>::size_type KeyResolver::resolveCertificates(
 {
     return 0;
 }
+
+XSECCryptoX509CRL* KeyResolver::resolveCRL(const KeyInfo* keyInfo) const
+{
+    return NULL;
+}
+
+XSECCryptoX509CRL* KeyResolver::resolveCRL(DSIGKeyInfoList* keyInfo) const
+{
+    return NULL;
+}