class documentation

class EncryptionKey: (source)

Constructor: EncryptionKey(key)

View In Hierarchy

The key used for encryption.

Method __init__ Create EncryptionKey instance.
Method __repr__ Undocumented
Method __str__ Undocumented
Property key Returns the key, which is usually the key file's name.
Property metadata Returns the metadata associated with the key.
Property value Returns the value, which is usually the key bytes used for encryption.
Instance Variable _key Undocumented
def __init__(self, key: _pulsar.EncryptionKey): (source)

Create EncryptionKey instance.

Parameters
key:_pulsar.EncryptionKeyThe underlying EncryptionKey instance from the C extension.
def __repr__(self) -> str: (source)

Undocumented

def __str__(self) -> str: (source)

Undocumented

Returns the key, which is usually the key file's name.

Returns the metadata associated with the key.

Returns the value, which is usually the key bytes used for encryption.

Undocumented