HashVal

from panda3d.core import HashVal
class HashVal

Bases:

Stores a 128-bit value that represents the hashed contents (typically MD5) of a file or buffer.

Inheritance diagram

Inheritance diagram of HashVal

__eq__(other: HashVal) bool
__init__()
__init__(copy: HashVal)
__lt__(other: HashVal) bool
__ne__(other: HashVal) bool
asBin() bytes

Returns the HashVal as a 16-byte binary string.

asDec() str

Returns the HashVal as a string with four decimal numbers.

asHex() str

Returns the HashVal as a 32-byte hexadecimal string.

assign(copy: HashVal) HashVal
compareTo(other: HashVal) int
hashBuffer(buffer: str, length: int)

Generates the hash value by hashing the indicated data. This method is only defined if we have the OpenSSL library (which provides md5 functionality) available.

hashBytes(data: bytes)

Generates the hash value by hashing the indicated data. This method is only defined if we have the OpenSSL library (which provides md5 functionality) available.

hashFile(filename: Filename) bool

Generates the hash value from the indicated file. Returns true on success, false if the file cannot be read. This method is only defined if we have the OpenSSL library (which provides md5 functionality) available.

hashRamfile(ramfile: Ramfile)

Generates the hash value by hashing the indicated data. This method is only defined if we have the OpenSSL library (which provides md5 functionality) available.

hashStream(stream: istream) bool

Generates the hash value from the indicated file. Returns true on success, false if the file cannot be read. This method is only defined if we have the OpenSSL library (which provides md5 functionality) available.

hashString(data: str)

Generates the hash value by hashing the indicated data. This method is only defined if we have the OpenSSL library (which provides md5 functionality) available.

inputBinary(in: istream)

Inputs the HashVal as a binary stream of bytes in order. This is not the same order expected by readStream().

inputDec(in: istream)

Inputs the HashVal as four unsigned decimal integers.

inputHex(in: istream)

Inputs the HashVal as a 32-digit hexadecimal number.

mergeWith(other: HashVal)

Generates a new HashVal representing the xor of this one and the other one.

output(out: ostream)
outputBinary(out: ostream)

Outputs the HashVal as a binary stream of bytes in order. This is not the same order generated by writeStream().

outputDec(out: ostream)

Outputs the HashVal as four unsigned decimal integers.

outputHex(out: ostream)

Outputs the HashVal as a 32-digit hexadecimal number.

readDatagram(source: DatagramIterator)
readStream(source: StreamReader)
setFromBin(text: bytes) bool

Sets the HashVal from a 16-byte binary string. Returns true if successful, false otherwise.

setFromDec(text: str) bool

Sets the HashVal from a string with four decimal numbers. Returns true if valid, false otherwise.

setFromHex(text: str) bool

Sets the HashVal from a 32-byte hexademical string. Returns true if successful, false otherwise.

writeDatagram(destination: Datagram)
writeStream(destination: StreamWriter)