IDecryptStream

from panda3d.core import IDecryptStream
class IDecryptStream

Bases: istream

An input stream object that uses OpenSSL to decrypt the input from another source stream on-the-fly.

Attach an IDecryptStream to an existing istream that provides encrypted data, as generated by an OEncryptStream, and read the corresponding unencrypted data from the IDecryptStream.

Seeking is not supported.

Inheritance diagram

Inheritance diagram of IDecryptStream

__init__(*args, **kwargs)
algorithm
close()

C++ Interface: close(const IDecryptStream self)

/**
  • Resets the EncryptStream to empty, but does not actually close the source

  • istream unless owns_source was true.

*/

getAlgorithm()

C++ Interface: get_algorithm(IDecryptStream self)

/**
  • Returns the encryption algorithm that was read from the stream.

*/

getIterationCount()

C++ Interface: get_iteration_count(IDecryptStream self)

/**
  • Returns the value that was was read from the stream.

*/

getKeyLength()

C++ Interface: get_key_length(IDecryptStream self)

/**
  • Returns the encryption key length, in bits, that was read from the stream.

*/

get_algorithm()

C++ Interface: get_algorithm(IDecryptStream self)

/**
  • Returns the encryption algorithm that was read from the stream.

*/

get_iteration_count()

C++ Interface: get_iteration_count(IDecryptStream self)

/**
  • Returns the value that was was read from the stream.

*/

get_key_length()

C++ Interface: get_key_length(IDecryptStream self)

/**
  • Returns the encryption key length, in bits, that was read from the stream.

*/

iteration_count
key_length
open()

C++ Interface: open(const IDecryptStream self, istream source, bool owns_source, str password)

/**

*/