mirror of
https://github.com/python/cpython.git
synced 2024-11-24 10:24:35 +08:00
12 lines
222 B
Python
Executable File
12 lines
222 B
Python
Executable File
#! /usr/bin/env python
|
|
"""Simple test script for cryptmodule.c
|
|
Roger E. Masse
|
|
"""
|
|
|
|
from test_support import verify, verbose
|
|
import crypt
|
|
|
|
c = crypt.crypt('mypassword', 'ab')
|
|
if verbose:
|
|
print 'Test encryption: ', c
|