mirror of
				https://github.com/python/cpython.git
				synced 2025-11-04 07:31:38 +00:00 
			
		
		
		
	
		
			
	
	
		
			37 lines
		
	
	
	
		
			543 B
		
	
	
	
		
			C
		
	
	
	
	
	
		
		
			
		
	
	
			37 lines
		
	
	
	
		
			543 B
		
	
	
	
		
			C
		
	
	
	
	
	
| 
								 | 
							
								/* cryptmodule.c - by Steve Majewski
							 | 
						||
| 
								 | 
							
								 */
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								#include "allobjects.h"
							 | 
						||
| 
								 | 
							
								#include "modsupport.h"
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								#include <sys/types.h>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								/* Module crypt */
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								static object *crypt_crypt(self, args)
							 | 
						||
| 
								 | 
							
									object *self, *args;
							 | 
						||
| 
								 | 
							
								{
							 | 
						||
| 
								 | 
							
									char *word, *salt; 
							 | 
						||
| 
								 | 
							
									extern char * crypt();
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
									struct passwd *p;
							 | 
						||
| 
								 | 
							
									if (!getargs(args, "(ss)", &word, &salt)) {
							 | 
						||
| 
								 | 
							
										return NULL;
							 | 
						||
| 
								 | 
							
									}
							 | 
						||
| 
								 | 
							
									return newstringobject( crypt( word, salt ) );
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								static struct methodlist crypt_methods[] = {
							 | 
						||
| 
								 | 
							
									{"crypt",	crypt_crypt},
							 | 
						||
| 
								 | 
							
									{NULL,		NULL}		/* sentinel */
							 | 
						||
| 
								 | 
							
								};
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								void
							 | 
						||
| 
								 | 
							
								initcrypt()
							 | 
						||
| 
								 | 
							
								{
							 | 
						||
| 
								 | 
							
									initmodule("crypt", crypt_methods);
							 | 
						||
| 
								 | 
							
								}
							 |