IPWorks EDI 2020 Python Edition

Questions / Feedback?

on_key_list Event

Lists the keysets in a CSP (see the ListKeys method).

Syntax

class CertMgrKeyListEventParams(object):
  @property
  def key_container() -> str: ...
  @property
  def key_type() -> int: ...
  @property
  def alg_id() -> str: ...
  @property
  def key_len() -> int: ...

# In class CertMgr:
@property
def on_key_list() -> Callable[[CertMgrKeyListEventParams], None]: ...
@on_key_list.setter
def on_key_list(event_hook: Callable[[CertMgrKeyListEventParams], None]) -> None: ...

Remarks

The KeyContainer parameter is the name used to identify the keyset (public/private key pair) when it was first created.

KeyType shows the key type: 1 for key exchange (encryption) keys, and 2 for digital signature keys.

KeyLen shows the length of the public key (in bits).

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks EDI 2020 Python Edition - Version 20.0 [Build 8203]