Panda3D
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Properties
Public Member Functions | List of all members
OEncryptStream Class Reference

An input stream object that uses OpenSSL to encrypt data to another destination stream on-the-fly. More...

Inheritance diagram for OEncryptStream:
Ostream Ios IosBase

Public Member Functions

 __init__ ()
 
 __init__ (Ostream dest, bool owns_dest, str password)
 
OEncryptStream close ()
 Resets the EncryptStream to empty, but does not actually close the dest ostream unless owns_dest was true. More...
 
OEncryptStream open (Ostream dest, bool owns_dest, str password)
 
 setAlgorithm (str algorithm)
 Specifies the encryption algorithm that should be used for future calls to open(). The default is whatever is specified by the encryption-algorithm config variable. The complete set of available algorithms is defined by the current version of OpenSSL. More...
 
 setIterationCount (int iteration_count)
 Specifies the number of times to repeatedly hash the key before writing it to the stream in future calls to open(). Its purpose is to make it computationally more expensive for an attacker to search the key space exhaustively. This should be a multiple of 1,000 and should not exceed about 65 million; the value 0 indicates just one application of the hashing algorithm. More...
 
 setKeyLength (int key_length)
 Specifies the length of the key, in bits, that should be used to encrypt the stream in future calls to open(). The default is whatever is specified by the encryption-key-length config variable. More...
 
- Public Member Functions inherited from Ostream
 flush ()
 
 put (char c)
 
 seekp (Ios::Streamoff off, IosBase::Seekdir dir)
 
 seekp (Ios::Streampos pos)
 
Ios::Streampos tellp ()
 
- Public Member Functions inherited from Ios
bool bad ()
 
 clear ()
 
bool eof ()
 
bool fail ()
 
bool good ()
 

Additional Inherited Members

- Public Types inherited from IosBase
enum  Openmode
 
enum  Seekdir { beg = 0, cur = 1, end = 2 }
 

Detailed Description

An input stream object that uses OpenSSL to encrypt data to another destination stream on-the-fly.

Attach an OEncryptStream to an existing ostream that will accept encrypted data, and write your unencrypted source data to the OEncryptStream.

Seeking is not supported.

Member Function Documentation

__init__ ( )
__init__ ( Ostream  dest,
bool  owns_dest,
str  password 
)
OEncryptStream close ( )

Resets the EncryptStream to empty, but does not actually close the dest ostream unless owns_dest was true.

OEncryptStream open ( Ostream  dest,
bool  owns_dest,
str  password 
)
setAlgorithm ( str  algorithm)

Specifies the encryption algorithm that should be used for future calls to open(). The default is whatever is specified by the encryption-algorithm config variable. The complete set of available algorithms is defined by the current version of OpenSSL.

If an invalid algorithm is specified, there is no immediate error return code, but open() will fail.

setIterationCount ( int  iteration_count)

Specifies the number of times to repeatedly hash the key before writing it to the stream in future calls to open(). Its purpose is to make it computationally more expensive for an attacker to search the key space exhaustively. This should be a multiple of 1,000 and should not exceed about 65 million; the value 0 indicates just one application of the hashing algorithm.

The default is whatever is specified by the encryption-iteration-count config variable.

setKeyLength ( int  key_length)

Specifies the length of the key, in bits, that should be used to encrypt the stream in future calls to open(). The default is whatever is specified by the encryption-key-length config variable.

If an invalid key_length for the chosen algorithm is specified, there is no immediate error return code, but open() will fail.