mirror of
https://github.com/freedomofpress/dangerzone.git
synced 2025-05-02 03:32:23 +02:00

This is done to avoid looking at the internal logic of `dangerzone.updater`. Only the features that actually are part of the exposed API are exposed, and do not require deep knowledge of the updater's logic to be used.
12 lines
268 B
Python
12 lines
268 B
Python
import logging
|
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
from .errors import SignatureError, UpdaterError
|
|
from .signatures import (
|
|
DEFAULT_PUBKEY_LOCATION,
|
|
install_local_container_tar,
|
|
is_update_available,
|
|
upgrade_container_image,
|
|
verify_local_image,
|
|
)
|