notes
[mech_eap.git] / util_saml.c
index 8113677..e86b232 100644 (file)
@@ -41,8 +41,19 @@ samlDuplicateAssertion(OM_uint32 *minor,
 }
 
 OM_uint32
-samlFreeAssertion(OM_uint32 *minor,
-                  struct eap_gss_saml_assertion *assertion)
+samlReleaseAssertion(OM_uint32 *minor,
+                     struct eap_gss_saml_assertion **assertion)
+{
+    if (*assertion != NULL) {
+        GSSEAP_NOT_IMPLEMENTED;
+        *assertion = NULL;
+    }
+}
+
+OM_uint32
+samlImportAssertion(OM_uint32 *minor,
+                    gss_buffer_t buffer,
+                    struct eap_gss_saml_assertion *pAssertion)
 {
     GSSEAP_NOT_IMPLEMENTED;
 }