Initial commit of OpenSPARC T2 design and verification files.
[OpenSPARC-T2-DV] / tools / src / nas,5.n2.os.2 / lib / python / lib / python2.4 / test / test_crypt.py
CommitLineData
86530b38
AT
1#! /usr/bin/env python
2"""Simple test script for cryptmodule.c
3 Roger E. Masse
4"""
5
6from test.test_support import verify, verbose
7import crypt
8
9c = crypt.crypt('mypassword', 'ab')
10if verbose:
11 print 'Test encryption: ', c