 0f3d578efc
			
		
	
	
		0f3d578efc
		
	
	
	
	
		
			
			Remove the GPL notification text from the files that were initially contributed by myself. Signed-hostap: Jouni Malinen <j@w1.fi>
		
			
				
	
	
		
			38 lines
		
	
	
	
		
			692 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
	
		
			692 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * Testing tool for X.509v3 routines
 | |
|  * Copyright (c) 2006-2009, Jouni Malinen <j@w1.fi>
 | |
|  *
 | |
|  * This software may be distributed under the terms of the BSD license.
 | |
|  * See README for more details.
 | |
|  */
 | |
| 
 | |
| #include "includes.h"
 | |
| 
 | |
| #include "common.h"
 | |
| #include "tls/x509v3.h"
 | |
| 
 | |
| extern int wpa_debug_level;
 | |
| 
 | |
| 
 | |
| int main(int argc, char *argv[])
 | |
| {
 | |
| 	FILE *f;
 | |
| 	u8 buf[3000];
 | |
| 	size_t len;
 | |
| 	struct x509_certificate *cert;
 | |
| 
 | |
| 	wpa_debug_level = 0;
 | |
| 
 | |
| 	f = fopen(argv[1], "rb");
 | |
| 	if (f == NULL)
 | |
| 		return -1;
 | |
| 	len = fread(buf, 1, sizeof(buf), f);
 | |
| 	fclose(f);
 | |
| 
 | |
| 	cert = x509_certificate_parse(buf, len);
 | |
| 	if (cert == NULL)
 | |
| 		printf("Failed to parse X.509 certificate\n");
 | |
| 	x509_certificate_free(cert);
 | |
| 
 | |
| 	return 0;
 | |
| }
 |