Index: creddy/creddy_internal.h
===================================================================
--- creddy/creddy_internal.h	(revision bde4e91525c12eeb9a04d69d26ed72968e63bfbe)
+++ creddy/creddy_internal.h	(revision bde4e91525c12eeb9a04d69d26ed72968e63bfbe)
@@ -0,0 +1,20 @@
+#ifndef __CREDDY_INTERNAL_H__
+#define __CREDDY_INTERNAL_H__
+
+#include <creddy.h>
+#include <abac.h>
+#include <abac_util.h>
+
+void *abac_xmalloc(size_t len);
+void *abac_xrealloc(void *ptr, size_t size);
+char *abac_xstrdup(char *string);
+
+// get the cert from the ID
+certificate_t *abac_id_cert(abac_id_t *id);
+
+// get the private key from the ID
+// will return NULL if no key has been loaded
+private_key_t *abac_id_privkey(abac_id_t *id);
+
+
+#endif /* __CREDDY_INTERNAL_H__ */
Index: examples/python_tests/access_rt2/README
===================================================================
--- examples/python_tests/access_rt2/README	(revision f824a9ec465246e1555b44ec89522ae2ad35c47e)
+++ examples/python_tests/access_rt2/README	(revision bde4e91525c12eeb9a04d69d26ed72968e63bfbe)
@@ -1,3 +1,4 @@
 #####################################################################
+# label: 00
 # This example demonstrates using an oset (object set) to control access
 # to files based on the attributes of the principals.  The script creates
Index: examples/python_tests/access_rt2/setup.py
===================================================================
--- examples/python_tests/access_rt2/setup.py	(revision f824a9ec465246e1555b44ec89522ae2ad35c47e)
+++ examples/python_tests/access_rt2/setup.py	(revision bde4e91525c12eeb9a04d69d26ed72968e63bfbe)
@@ -11,9 +11,9 @@
 ctxt = ABAC.Context()
 
-alphaID=ABAC.ID("Alpha", 0)
-alphaID.id_write_cert("Alpha_ID.pem")
-alphaID.id_write_privkey("Alpha_private.pem")
+alphaID=ABAC.ID("Alpha00", 0)
+alphaID.id_write_cert("Alpha00_ID.pem")
+alphaID.id_write_privkey("Alpha00_private.pem")
 
-bobID=ABAC.ID("Bob", 0)
-bobID.id_write_cert("Bob_ID.pem")
-bobID.id_write_privkey("Bob_private.pem")
+bobID=ABAC.ID("Bob00", 0)
+bobID.id_write_cert("Bob00_ID.pem")
+bobID.id_write_privkey("Bob00_private.pem")
