Remove Makefiles which are generated by the autools stuff
[mod_auth_kerb.git] / spnegokrb5 / spnegokrb5_locl.h
index 6dba1ca..57fa9b2 100644 (file)
@@ -3,8 +3,27 @@
 
 #include <gssapi.h>
 #include <spnego_asn1.h>
+#include <spnegokrb5.h>
 #include <der.h>
 #include <asn1_err.h>
 
+#define ALLOC(X) (X) = calloc(1, sizeof(*(X)))
+
 extern gss_OID GSS_KRB5_MECH;
 extern gss_OID GSS_SPNEGO_MECH;
+
+OM_uint32
+gssapi_spnego_encapsulate(
+                        OM_uint32 *,
+                        unsigned char *,
+                        size_t,
+                        gss_buffer_t,
+                        const gss_OID);
+
+OM_uint32
+gssapi_spnego_decapsulate(
+                        OM_uint32 *,
+                        gss_buffer_t,
+                        unsigned char **,
+                        size_t *,
+                        const gss_OID);