tis-veracrypt
1.26.7-1
VeraCrypt is a free and open-source utility for on-the-fly encryption (OTFE)
2690 downloads
Download
See build result See VirusTotal scan

- package : tis-veracrypt
- name : VeraCrypt
- version : 1.26.7-1
- categories : System and network
- maintainer : WAPT Team,Tranquil IT,Clément BAZIRET
- installed_size : 44126078
- editor :
- licence : opensource_free,cpe:/a:apache:license_2.0,wapt_private
- signature_date : 2024-02-18T16:00:07.930236
- size : 27.07 Mo
- locale : all
- target_os : windows
- impacted_process : VeraCrypt
- architecture : x64
- Homepage : https://www.veracrypt.fr/en/Home.html
package : tis-veracrypt
version : 1.26.7-1
architecture : x64
section : base
priority : optional
name : VeraCrypt
categories : System and network
maintainer : WAPT Team,Tranquil IT,Clément BAZIRET
description : VeraCrypt is a free and open-source utility for on-the-fly encryption (OTFE)
depends :
conflicts :
maturity : PROD
locale : all
target_os : windows
min_wapt_version : 2.3
sources : https://www.veracrypt.fr/en/Downloads.html
installed_size : 44126078
impacted_process : VeraCrypt
description_fr : VeraCrypt est un utilitaire libre et gratuit pour le chiffrement à la volée (OTFE)
description_pl : VeraCrypt to darmowe i otwarte narzędzie do szyfrowania w locie (OTFE)
description_de : VeraCrypt ist ein kostenloses und quelloffenes Dienstprogramm für fliegende Verschlüsselung (OTFE)
description_es : VeraCrypt es una utilidad gratuita y de código abierto para el cifrado al vuelo (OTFE)
description_pt : O VeraCrypt é um utilitário gratuito e de código aberto para encriptação on-the-fly (OTFE)
description_it : VeraCrypt è un'utility gratuita e open-source per la crittografia al volo (OTFE)
description_nl : VeraCrypt is een gratis en open-source hulpprogramma voor on-the-fly encryptie (OTFE)
description_ru : VeraCrypt - это бесплатная утилита с открытым исходным кодом для шифрования "на лету" (OTFE)
audit_schedule :
editor :
keywords : veracrypt,free,open,source,utility,encryption
licence : opensource_free,cpe:/a:apache:license_2.0,wapt_private
homepage : https://www.veracrypt.fr/en/Home.html
package_uuid : f17bad5f-4dfa-470e-a100-879f4ff74cd5
valid_from :
valid_until :
forced_install_on :
changelog : https://github.com/veracrypt/VeraCrypt/releases
min_os_version : 6.1
max_os_version :
icon_sha256sum : 3efa1d2410d693f6c3ef1aec3342a4ae1b0216cd7821f77079bfa8027baaab70
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature : JuTh7ShgBX1ztPXaZRK2f0lUBzEFOMYojtLyP3oEMc857ZOH+e8VFs0mjY3aR9QfXVbLjsG57hyxL0Br9CqZWwTLyil0bbGNsS+RNOM27SB87PJOTxqakZe8nbKsV/WN7vTO25pZsya+ZoLdvw1/fZ6QV4h9d7bHcgao39Z8RN8YXMLVezomFgIvVm/EPl4WJkpZxlRxMI3nh+GlIokZJ5Ybaqz9ZxtZohiXDFTUN0jpyXhQKngrFWlrji+gPR0QnY5C9PkRl4TYkIAgsh/4lS0AJMTOIhry9BcE3BqGefmdPUAB7NGsqlo2P5sqQSWtHwyQK5CIr8fZilj1bQE6aA==
signature_date : 2024-02-18T16:00:07.930236
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
# -*- coding: utf-8 -*-
from setuphelpers import *
def install():
bin_name = glob.glob("VeraCrypt_Setup_x64_*.msi")[0]
properties = {
"ACCEPTLICENSE": "YES",
}
install_msi_if_needed(
bin_name,
timeout=600,
properties=properties,
min_version=control.get_software_version(),
)
# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
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/veracrypt/VeraCrypt/releases/latest"
download_dict = {
"windows-x64": ".msi",
"mac-all": ".dmg",
"debian-bookworm-x64": "Debian-12-amd64.deb",
"centos7-x64": "CentOS-7-x86_64.rpm",
}
# Getting latest version information from official sources
print("API used is: %s" % api_url)
json_load = wgets(api_url, proxies=proxies, as_json=True)
version = json_load["tag_name"].split("_")[-1]
for to_download in json_load["assets"]:
if download_dict[control.target_os + "-" + ensure_list(control.architecture)[0]] in to_download["name"] and not ".sig" in to_download["name"]:
download_url = to_download["browser_download_url"]
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
remove_outdated_binaries(latest_bin)
# Checking version from file
if get_os_name() == "Windows" and "windows" in control.target_os.lower():
version_from_file = get_version_from_binary(latest_bin)
if Version(version_from_file, 4) == Version(version, 4):
print(f"INFO: Binary file version ({version_from_file}) corresponds to online version ({version})")
else:
error(f"ERROR: Binary file version ({version_from_file}) do NOT corresponds to online version ({version})")
# Changing version of the package
if Version(version, 4) > Version(control.get_software_version(), 4):
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
4ade8d8ffc17d7df17ff1731d3f4c92b00557d39ab8e25a863331646c6d60354 : setup.py
: __pycache__
e60fb52c5dbfc2934ed8caf634b05a48a107e139a8bcc110a0c43be65e25c7af : update_package.py
3efa1d2410d693f6c3ef1aec3342a4ae1b0216cd7821f77079bfa8027baaab70 : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
9457f85c27acc5830d3d61aca99005b4f74cbd474cd5cadbeea9a04ae26810ae : luti.json
c802dcdda02e9a7a3f52645bf90285d3055c76038dc760131192cc23327ca8f8 : VeraCrypt_Setup_x64_1.26.7.msi
52defd44d8d0046a54b17e8c3779628b6947b6a66da966786c8132be02e12077 : WAPT/control