mirror of
https://github.com/python/cpython.git
synced 2026-05-16 01:19:28 -04:00
7 lines
157 B
Python
Executable File
7 lines
157 B
Python
Executable File
#! /usr/bin/env python
|
|
"""Simple test script for cryptmodule.c
|
|
Roger E. Masse
|
|
"""
|
|
import crypt
|
|
print 'Test encryption: ', crypt.crypt('mypassword', 'ab')
|