cpython/Lib/test/test_crypt.py

12 lines
228 B
Python
Raw Normal View History

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