home *** CD-ROM | disk | FTP | other *** search
/ Internet Magazine 2004 March / INTERNET115.ISO / pc / software / windows / building / python / python_233.exe / TEST_CRYPT.PY < prev    next >
Encoding:
Python Source  |  2002-07-23  |  238 b   |  12 lines

  1. #! /usr/bin/env python
  2. """Simple test script for cryptmodule.c
  3.    Roger E. Masse
  4. """
  5.  
  6. from test.test_support import verify, verbose
  7. import crypt
  8.  
  9. c = crypt.crypt('mypassword', 'ab')
  10. if verbose:
  11.     print 'Test encryption: ', c
  12.