File: README

package info (click to toggle)
python-crypto 2.0.1%2Bdfsg1-1.2%2Betch0
  • links: PTS
  • area: main
  • in suites: etch
  • size: 740 kB
  • ctags: 935
  • sloc: ansic: 6,597; python: 3,596; makefile: 13; sh: 10
file content (29 lines) | stat: -rw-r--r-- 948 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
This directory contains demonstration files that use the modules
included in the Python Cryptography Toolkit.  

Note: These programs have version numbers of their own, which are not
necessarily the same as the version number of the Toolkit package.

cipher		Encrypt and decrypt sensitive files; type 'cipher -h'
		for a usage message.

voice		Allows secure voice communication over a TCP/IP link.
		Currently this is Linux-specific; changes to make it
		run on other systems would be greatly appreciated.

RSAgen.py	Generates a new RSA key.  Demonstrates using
		randpool.py, and maintains a file of random data in
		"randseed".  Requires that the IDEA and MD5 modules
		are installed.

testkey.py	RSA public/private key pair used by example programs.

Secure importing of Python modules:

	sign.py	        Sign all *.pyc files in a directory, using the
			key defined in testkey.py.

	secimp.py	Implementation of the secure 'import' command.