mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 13:41:24 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			6 lines
		
	
	
	
		
			157 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
	
		
			157 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| #! /usr/bin/env python
 | |
| """Simple test script for cryptmodule.c
 | |
|    Roger E. Masse
 | |
| """
 | |
| import crypt
 | |
| print 'Test encryption: ', crypt.crypt('mypassword', 'ab')
 | 
