1996-12-09 19:13:45 -04:00
|
|
|
#! /usr/bin/env python
|
|
|
|
"""Simple test script for cryptmodule.c
|
|
|
|
Roger E. Masse
|
|
|
|
"""
|
1996-12-16 16:44:56 -04:00
|
|
|
verbose = 0
|
|
|
|
if __name__ == '__main__':
|
|
|
|
verbose = 1
|
|
|
|
|
1996-12-09 19:13:45 -04:00
|
|
|
import crypt
|
1996-12-16 16:44:56 -04:00
|
|
|
c = crypt.crypt('mypassword', 'ab')
|
|
|
|
if verbose:
|
|
|
|
print 'Test encryption: ', c
|