| Trees | Index | Help |
|---|
|
Flatten: Flatten is a serialization library which implements a secure binary
transport mechanism for Python objects.
yawPyCrypto: yawPyCrypto ===========
AdvKey: AdvKey.py =========
Cipher: Stream encryption wrapper class.
Config: This file defines several configuration defaults for yawPyCrypto.
Constants: This file defines all constants used throughout the yawPyCrypto
package.
Key: Main class which wraps the PyCrypto public key functionality into an
easier to use interface.
KeyCipher: Key encryption wrapper class.
_CipherBase: This file implements the cipher base classes.
_CipherStream: Cipher stream classes.
_Imports: File that imports all crypto modules from the PyCrypto tree and sets
defaults based on these modules.
_KeyCipherBase: This file implements a key cipher class, which allows you to use
public key encryption in the same way that GPG offers it.
_Randpool: This file defines the global random string pool used in
yawPyCrypto.
_StreamBase: Stream base classes.
__builtin__.object: The most base type
yawPyCrypto._Imports.AlgoDefinitions: Abstract base class for all algorithm wrapping classes, defines hashes
which contain abstractions of all Algorithms known to this class.
yawPyCrypto._CipherStream.CipherStream: Class that implements the standard cipher stream.
yawPyCrypto._CipherStream.DecryptStream: This class implements a decryption stream.
yawPyCrypto.Cipher.DecryptCipher: Decryption cipher class.
yawPyCrypto.KeyCipher.KeyDecryptCipher: Key cipher decryption class.
yawPyCrypto._CipherStream.ZipDecryptStream: Zipped stream decryption.
yawPyCrypto.Cipher.ZipDecryptCipher: Class which works similar to DecryptCipher, but streams all data read
from the encrypted stream through unzipping on reading.
yawPyCrypto.KeyCipher.ZipKeyDecryptCipher: Class which works similar to KeyDecryptCipher, but streams all data
read from the encrypted stream through unzipping on reading.
yawPyCrypto._CipherStream.EncryptStream: This class implements an encryption stream.
yawPyCrypto.Cipher.EncryptCipher: Encryption cipher class.
yawPyCrypto.KeyCipher.KeyEncryptCipher: Key encryption cipher class.
yawPyCrypto._CipherStream.ZipEncryptStream: This encryption stream wraps all data by zipping it using compression
9 before encrypting it.
yawPyCrypto.Cipher.ZipEncryptCipher: Class which works similar to EncryptCipher, but streams all data
through zipping on writing, so that it is in effect
"randomized" on writing.
yawPyCrypto.KeyCipher.ZipKeyEncryptCipher: Class which works similar to KeyEncryptCipher, but streams all data
through zipping on writing, so that it is in effect
"randomized" on writing.
yawPyCrypto.Key.Key: This class is the main entrypoint for working with public key
algorithms from yawPyCrypto.
yawPyCrypto.AdvKey.AsciiKey: AsciiKey is a Key derived class which offers functionality to wrap Key
data in base64 encoded packets.
yawPyCrypto.AdvKey.SecureAsciiKey: SecureAsciiKey is a Key derived class which offers both ascii-armoring
and also encryption of private key data in a single key class.
yawPyCrypto.AdvKey.SecureKey: SecureKey is a Key derived class which offers encryption of private
key data using the Blowfish cipher, with a specified password.
yawPyCrypto._CipherBase.DecryptBase: DecryptBase is an abstract base class which implements the feed() and
finish() methods for decryption streams.
yawPyCrypto.Cipher.DecryptCipher: Decryption cipher class.
yawPyCrypto.KeyCipher.KeyDecryptCipher: Key cipher decryption class.
yawPyCrypto.Cipher.ZipDecryptCipher: Class which works similar to DecryptCipher, but streams all data read
from the encrypted stream through unzipping on reading.
yawPyCrypto.KeyCipher.ZipKeyDecryptCipher: Class which works similar to KeyDecryptCipher, but streams all data
read from the encrypted stream through unzipping on reading.
yawPyCrypto._CipherBase.EncryptBase: EncryptBase is an abstract base class which implements the feed() and
finish() methods of a cipher class.
yawPyCrypto.Cipher.EncryptCipher: Encryption cipher class.
yawPyCrypto.KeyCipher.KeyEncryptCipher: Key encryption cipher class.
yawPyCrypto.Cipher.ZipEncryptCipher: Class which works similar to EncryptCipher, but streams all data
through zipping on writing, so that it is in effect
"randomized" on writing.
yawPyCrypto.KeyCipher.ZipKeyEncryptCipher: Class which works similar to KeyEncryptCipher, but streams all data
through zipping on writing, so that it is in effect
"randomized" on writing.
Flatten.Flatten.IFlatten: Interface from which all serializable classes need to be derived.
yawPyCrypto.Key.Key: This class is the main entrypoint for working with public key
algorithms from yawPyCrypto.
yawPyCrypto.AdvKey.AsciiKey: AsciiKey is a Key derived class which offers functionality to wrap Key
data in base64 encoded packets.
yawPyCrypto.AdvKey.SecureAsciiKey: SecureAsciiKey is a Key derived class which offers both ascii-armoring
and also encryption of private key data in a single key class.
yawPyCrypto.AdvKey.SecureKey: SecureKey is a Key derived class which offers encryption of private
key data using the Blowfish cipher, with a specified password.
yawPyCrypto._KeyCipherBase.KeyDecryptBase: Abstract base class for decrypting streams written by a class derived
from KeyEncryptBase.
yawPyCrypto.KeyCipher.KeyDecryptCipher: Key cipher decryption class.
yawPyCrypto.KeyCipher.ZipKeyDecryptCipher: Class which works similar to KeyDecryptCipher, but streams all data
read from the encrypted stream through unzipping on reading.
yawPyCrypto._KeyCipherBase.KeyEncryptBase: Abstract base class used for extending the EncryptBase class for
encryption of packets using public key encryption algorithms.
yawPyCrypto.KeyCipher.KeyEncryptCipher: Key encryption cipher class.
yawPyCrypto.KeyCipher.ZipKeyEncryptCipher: Class which works similar to KeyEncryptCipher, but streams all data
through zipping on writing, so that it is in effect
"randomized" on writing.
yawPyCrypto._StreamBase.StreamBase: Base class for all streams.
yawPyCrypto._StreamBase.InputStream: Class that implements an input stream.
yawPyCrypto._CipherStream.DecryptStream: This class implements a decryption stream.
yawPyCrypto.Cipher.DecryptCipher: Decryption cipher class.
yawPyCrypto.KeyCipher.KeyDecryptCipher: Key cipher decryption class.
yawPyCrypto._CipherStream.ZipDecryptStream: Zipped stream decryption.
yawPyCrypto.Cipher.ZipDecryptCipher: Class which works similar to DecryptCipher, but streams all data read
from the encrypted stream through unzipping on reading.
yawPyCrypto.KeyCipher.ZipKeyDecryptCipher: Class which works similar to KeyDecryptCipher, but streams all data
read from the encrypted stream through unzipping on reading.
yawPyCrypto._StreamBase.OutputStream: Class that implements an output stream.
yawPyCrypto._CipherStream.EncryptStream: This class implements an encryption stream.
yawPyCrypto.Cipher.EncryptCipher: Encryption cipher class.
yawPyCrypto.KeyCipher.KeyEncryptCipher: Key encryption cipher class.
yawPyCrypto._CipherStream.ZipEncryptStream: This encryption stream wraps all data by zipping it using compression
9 before encrypting it.
yawPyCrypto.Cipher.ZipEncryptCipher: Class which works similar to EncryptCipher, but streams all data
through zipping on writing, so that it is in effect
"randomized" on writing.
yawPyCrypto.KeyCipher.ZipKeyEncryptCipher: Class which works similar to KeyEncryptCipher, but streams all data
through zipping on writing, so that it is in effect
"randomized" on writing.
yawPyCrypto.Key.Untrusted: This class is a wrapper around untrusted key arguments.
| Trees | Index | Help |
|---|
| Generated by Epydoc 1.1 on Sun Aug 17 03:32:35 2003 | http://epydoc.sf.net |