git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@12438 ec53bebd-3082-4978-b11e-865c3cabbd6b
		
			
				
	
	
		
			23 lines
		
	
	
		
			375 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			375 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /* $Id$ */
 | |
| 
 | |
| #include <stddef.h>
 | |
| #include <time.h>
 | |
| 
 | |
| #ifndef __asn1_common_definitions__
 | |
| #define __asn1_common_definitions__
 | |
| 
 | |
| typedef struct heim_octet_string {
 | |
|     size_t length;
 | |
|     void *data;
 | |
| } heim_octet_string;
 | |
| 
 | |
| typedef char *heim_general_string;
 | |
| typedef char *heim_utf8_string;
 | |
| 
 | |
| typedef struct heim_oid {
 | |
|     size_t length;
 | |
|     unsigned *components;
 | |
| } heim_oid;
 | |
| 
 | |
| #endif
 |