tis-cryptomator icon

Cryptomator

Paquet d’installation silencieuse pour Cryptomator

1.19.0-2
Security
Security

Les paquets PREPROD sont des paquets construits via LUTI. Ils restent généralement 5 jours en PREPROD, après quoi un deuxième scan VirusTotal est effectué pour vérifier que le status n'a pas changé.
Si le paquet réussit ce dernier contrôle, il est promu en PROD et publié sur le store.

  • package: tis-cryptomator
  • name: Cryptomator
  • version: 1.19.0-2
  • categories: Security
  • maintainer: WAPT Team,Tranquil IT,Jordan ARNAUD
  • editor: Skymatic GmbH
  • licence: opensource_free,cpe:/a:gnu:gpl_v3,wapt_public
  • locale: all
  • target_os: darwin
  • impacted_process: Cryptomator
  • architecture: x64
  • signature_date:
  • size: 63.04 Mo
  • installed_size: 125.91 Mo
  • homepage : https://cryptomator.org/

package           : tis-cryptomator
version           : 1.19.0-2
architecture      : x64
section           : base
priority          : optional
name              : Cryptomator
categories        : Security
maintainer        : WAPT Team,Tranquil IT,Jordan ARNAUD
description       : Cryptomator is an open source encryption software that provides encryption for cloud drives
depends           : 
conflicts         : 
maturity          : PREPROD
locale            : all
target_os         : darwin
min_wapt_version  : 2.3
sources           : https://cryptomator.org/downloads/
installed_size    : 125914727
impacted_process  : Cryptomator
description_fr    : Cryptomator est un logiciel de cryptage open source qui permet de crypter les disques en nuage
description_pl    : Cryptomator to oprogramowanie szyfrujące typu open source, które zapewnia szyfrowanie dysków w chmurze
description_de    : Cryptomator ist eine Open-Source-Verschlüsselungssoftware, die Verschlüsselung für Cloud-Laufwerke bietet
description_es    : Cryptomator es un software de cifrado de código abierto que proporciona cifrado para unidades en la nube
description_pt    : O Cryptomator é um software de encriptação de fonte aberta que fornece encriptação para unidades de nuvem
description_it    : Cryptomator è un software di crittografia open source che fornisce la crittografia per le unità cloud
description_nl    : Cryptomator is een open source encryptiesoftware die encryptie biedt voor cloud drives
description_ru    : Cryptomator - это программное обеспечение для шифрования с открытым исходным кодом, которое обеспечивает шифрование облачных дисков
audit_schedule    : 
editor            : Skymatic GmbH
keywords          : encryption,cloud
licence           : opensource_free,cpe:/a:gnu:gpl_v3,wapt_public
homepage          : https://cryptomator.org/
package_uuid      : e67c85bf-1f65-4519-8d97-7f04ad63cba3
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : https://github.com/cryptomator/cryptomator/releases
min_os_version    : 
max_os_version    : 
icon_sha256sum    : a7daeb8a79d3f7d529fbf25397e87a1848f84b311b7e112654c043350934a1b8
signer            : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date    : 2026-03-09T09:53:08.000000
signed_attributes : package,version,architecture,section,priority,name,categories,maintainer,description,depends,conflicts,maturity,locale,target_os,min_wapt_version,sources,installed_size,impacted_process,description_fr,description_pl,description_de,description_es,description_pt,description_it,description_nl,description_ru,audit_schedule,editor,keywords,licence,homepage,package_uuid,valid_from,valid_until,forced_install_on,changelog,min_os_version,max_os_version,icon_sha256sum,signer,signer_fingerprint,signature_date,signed_attributes
signature         : VipoKnVIo5dH5ToV+xiLTycu7Jf9nXSmhxF9WmMWTdQMb/5CJdb8YLdCgetaT276S1ztmeNjIQDpLIoqjYWUfHh2uln04jPqWE+60UcorIoZWn9sBxCCFVhgJow8LGoQkOSxl5e8QMxYk7awkcSLzQQ3cFqiuG5HR4PD3gnKOgnkdaQKTcDDIW9dFOWsmgEMWqYyByiXwvPr5sNleVr58Dpv5VjFiM4JhVxBshUUqMhvmcz3VajyVZHTglDTz1Mm31idDyzPIRwK4DZ998DisRR0I1msvyoFzmk/3OjcDfdkVsk+meZUS81EJF3/H5O/0L3ROrBDTdtRCR3h21rtmQ==

# -*- coding: utf-8 -*-
##################################################
# This file is part of WAPT Enterprise
# All right reserved, (c) Tranquil IT Systems 2023
# For more information please refer to
# https://wapt.tranquil.it/store/licences.html
##################################################
from setuphelpers import *


def install():
    install_dmg(glob.glob("*x64.dmg")[0])


def uninstall():
    remove_tree("/Applications/Cryptomator.app")

# -*- coding: utf-8 -*-
##################################################
# This file is part of WAPT Enterprise
# All right reserved, (c) Tranquil IT Systems 2023
# For more information please refer to
# https://wapt.tranquil.it/store/licences.html
##################################################
from setuphelpers import *
import json


def update_package():
    # Declaring local variables
    package_updated = False
    proxies = get_proxies()
    if not proxies:
        proxies = get_proxies_from_wapt_console()
    api_url = "https://api.github.com/repos/cryptomator/cryptomator/releases/latest"
    extensions_file = ['.dmg', '.exe', '.deb', '.rpm', '.AppImage', '.appimage', '.msi', '.zip']
    
    update_dict = {
        "os_archi":{
            "windows-x64" : ".msi",
            "darwin-x64" : "x64.dmg",
            "darwin-arm" : "arm64.dmg",
            "linux-x64" : "x86_64.AppImage",
            "linux-arm64" : "aarch64.AppImage "
        }
    }

    # Getting latest version information from official sources
    print("API used is: %s" % api_url)
    json_load = json.loads(wgets(api_url, proxies=proxies))
    for to_download in json_load["assets"]:
        if update_dict["os_archi"][f'{ensure_list(control.target_os)[0].split("(")[0]}-{ensure_list(control.architecture)[0]}'] in to_download["name"]:
            download_url = to_download["browser_download_url"]
            version = json_load["tag_name"].split("-")[-1].replace("v", "")
            latest_bin = to_download["name"]
            break

    # Downloading latest binaries
    print("Latest %s version is: %s" % (control.name, version))
    print("Download URL is: %s" % download_url)
    if not isfile(latest_bin):
        print("Downloading: %s" % latest_bin)
        wget(download_url, latest_bin, proxies=proxies)
    else:
        print("Binary is present: %s" % latest_bin)


    # Deleting outdated binaries
    for bin in extensions_file:
        for file in glob.glob(f"*{bin}"):
            if file != latest_bin:
                remove_file(file)

    # Changing version of the package
    if Version(version) > Version(control.get_software_version()):
        print("Software version updated (from: %s to: %s)" % (control.get_software_version(), Version(version)))
        package_updated = True
    else:
        print("Software version up-to-date (%s)" % Version(version))
    control.set_software_version(version)
    control.save_control_to_wapt()

    # Validating update-package-sources
    return package_updated

3ba6011fe50574ee356c0e0f1a869afdd48f3e8059a679175ae8cb87c965475d : Cryptomator-1.19.0-x64.dmg
01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
7c7e419660f54f7418dd2876d7ea75592b78d300e01cca70d4698fab708c75ce : WAPT/control
a7daeb8a79d3f7d529fbf25397e87a1848f84b311b7e112654c043350934a1b8 : WAPT/icon.png
949e1b6163f8e3f8f6a1d729d56e7acc048154f6f98281777e148fc0194cca7c : luti.json
6aa21367016449499a7b91e7a1bd07ec5cfadb5253b92e50144f987d0483b6f8 : setup.py
57703485c59f67af020586ae5b58202fb9a50bfc4883f1063d81e793fcc2c6be : update_package.py