nitrokey.nk3.updates

class nitrokey.nk3.updates.UpdatePath

ベースクラス: Enum

classmethod create(variant, current, new)
パラメータ:
戻り値の型:

UpdatePath

default = 1
nRF_IFS_Migration_v1_3 = 2
class nitrokey.nk3.updates.UpdateUi

ベースクラス: ABC

abstract abort(*msgs)
パラメータ:

msgs (Any)

戻り値の型:

Exception

abstract abort_downgrade(current, image)
パラメータ:
戻り値の型:

Exception

abstract abort_pynitrokey_version(current, required)
パラメータ:
戻り値の型:

Exception

abstract confirm_download(current, new)
パラメータ:
戻り値の型:

None

abstract confirm_extra_information(extra_info)
パラメータ:

extra_info (List[str])

戻り値の型:

None

abstract confirm_pynitrokey_version(current, required)
パラメータ:
戻り値の型:

None

abstract confirm_update(current, new)
パラメータ:
戻り値の型:

None

abstract confirm_update_same_version(version)
パラメータ:

version (Version)

戻り値の型:

None

abstract download_progress_bar(desc)
パラメータ:

desc (str)

戻り値の型:

Iterator[Callable[[int, int], None]]

abstract error(*msgs)
パラメータ:

msgs (Any)

戻り値の型:

Exception

abstract finalization_progress_bar()
戻り値の型:

Iterator[Callable[[int, int], None]]

abstract pre_bootloader_hint()
戻り値の型:

None

abstract request_bootloader_confirmation()
戻り値の型:

None

request_repeated_update()
戻り値の型:

Exception | None

abstract update_progress_bar()
戻り値の型:

Iterator[Callable[[int, int], None]]

class nitrokey.nk3.updates.Updater

ベースクラス: object

__init__(ui, await_bootloader, await_device)
パラメータ:
  • ui (UpdateUi)

  • await_bootloader (Callable[[], NK3Bootloader])

  • await_device (Callable[[int | None, Callable[[int, int], None] | None], NK3])

戻り値の型:

None

update(device, image, update_version, ignore_pynitrokey_version=False)
パラメータ:
  • device (TrussedBase)

  • image (str | None)

  • update_version (str | None)

  • ignore_pynitrokey_version (bool)

戻り値の型:

Version

nitrokey.nk3.updates.get_extra_information(upath)

update-pathに基づき、アップデート後のデバイスの追加情報を返す。

パラメータ:

upath (UpdatePath)

戻り値の型:

List[str]

nitrokey.nk3.updates.get_finalization_wait_retries(upath)

update-pathに基づき、アップデート後にデバイスを待機させるリトライ回数を返す。

パラメータ:

upath (UpdatePath)

戻り値の型:

int

nitrokey.nk3.updates.get_firmware_update(release)
パラメータ:

release (Release)

戻り値の型:

Asset