mirror of
https://github.com/freedomofpress/dangerzone.git
synced 2025-05-17 18:51:50 +02:00

The hash list provided on the Github releases page is now bundled in the `reproduce-image.py` script, and the proper hashes are checked after download.
10 lines
186 B
Python
10 lines
186 B
Python
import logging
|
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
from .signatures import (
|
|
DEFAULT_PUBKEY_LOCATION,
|
|
is_update_available,
|
|
upgrade_container_image,
|
|
verify_local_image,
|
|
)
|