1996-12-10 12:02:14 -04:00
|
|
|
#! /usr/bin/env python
|
|
|
|
"""Simple test script for cryptmodule.c
|
|
|
|
Roger E. Masse
|
|
|
|
"""
|
1997-04-02 02:13:34 -04:00
|
|
|
|
|
|
|
from test_support import verbose
|
1996-12-10 12:02:14 -04:00
|
|
|
import crypt
|
1997-04-02 02:13:34 -04:00
|
|
|
|
|
|
|
c = crypt.crypt('mypassword', 'ab')
|
|
|
|
if verbose:
|
|
|
|
print 'Test encryption: ', c
|