CrococryptFile – File Encryption Software For Windows Download

[vc_row][vc_column][vc_tta_tabs style=”modern” active_section=”1″][vc_tta_section title=”About” tab_id=”aboutf856-8f34″][vc_column_text]CrococryptFile is file encryption software that creates encrypted archives of arbitrary files and folders. The encryption features of CrococryptFile can be compared to a ZIP utility that uses ZIP’s AES encryption. However, there are significant differences.

CrococryptFile adds the selected file to an archive, with a special extension, that no other program can open, *.croco. The program uses a powerful, password-based AES-256 encryption algorithm, allowing you to set different keyphrases for each file.

CrococryptFile File Encryption Software DownloadThe program features a minimalistic interface, which makes it very easy to use. The program opens directly with the import window and allows you to choose the preferred encryption method: password-based (AES-256) or Windows Keystore (RSA-AES-256). Additional options include GPG/OpenPGP Key (PGP-AES-256), cloaked password-based encryption (AES-Twofish-256) and cloaked with output padding (multiples of 1 MB).

It allows you to encrypt any individual file, by adding it to an archive and blocking any access to it, with the help of a password. This method is effective in case you wish to protect multiple files since other users would have to bypass a whole set of passwords instead of just one.

The main thing is that you need to remember all the passwords you set, in order to gain access to the information. The program offers reliable protection for each file, by adding it to an archive that can hide information regarding the file name, size, and time/date.

Sistem Gereksinimleri

Java RuntimeJava Runtime Software V 1.7.1 and higher version
Additional InformationJava Cryptography Policy Files (come with the installer)

[/vc_column_text][/vc_tta_section][vc_tta_section title=”Feature” tab_id=”featuref856-8f34″][vc_column_text]

CrococryptFile File Encryption Software For Windows

The encryption features of CrococryptFile can be compared to a ZIP utility that uses ZIP’s AES encryption. However, there are significant differences.

  • encrypts all file and folder information including filenames, time/date, and filesize information,
  • disguises any information of the archive’s content, because all data and meta-data are simply integrated into a giant file dump.

A *.croco file solely shows that it is indeed a CrococryptFile archive and which crypto suite (e.g., password-based AES-256 encryption) is used.[/vc_column_text][/vc_tta_section][vc_tta_section title=”Screenshots” tab_id=”screenshotsf856-8f34″][vc_column_text]

Screenshots of CrococryptFile File Encryption Tool For Windows

[/vc_column_text][vc_gallery interval=”3″ images=”57255,57254,57257″ img_size=”575×471″ title=”CrococryptFile Software Gallery”][/vc_tta_section][vc_tta_section title=”Video” tab_id=”videof856-8f34″][vc_column_text]

Official Video of CrococryptFile Software

[/vc_column_text][vc_video link=”https://www.youtube.com/watch?v=_UtMh8SG1L4″ align=”center” title=”CrococryptFile For Windows”][/vc_tta_section][vc_tta_section title=”Old Versions” tab_id=”older-versionsf856-8f34″][vc_column_text]

CrococryptFile Software Older Versions

[/vc_column_text][vc_column_text]

Version NameDateSizeİndir
1.6September, 19th 202028.6 MBİndir

[/vc_column_text][/vc_tta_section][vc_tta_section title=”Alternatives” tab_id=”1613204936455-cd1a2326-6b56f856-8f34″][vc_column_text]

[/vc_column_text][/vc_tta_section][/vc_tta_tabs][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]

CrococryptFile file Encryption Tool Overview

[/vc_column_text][vc_single_image image=”57256″ title=”Technical Specification”][vc_column_text css=”.vc_custom_1624888883419{margin-top: 10px !important;}”]

Versiyon1.6
Dosya Boyutu28.5 MB
Dillerİngilizce
LisansAçık Kaynak
GeliştiriciHissen IT

[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]Sonuç

CrococryptFile creates a special, password-protected archive, which shell cases your file. The source, however, remains in its original location, so you may delete, move or edit it. Decoding a *.croco file requires that you select it, when you open the program, after which you need to provide the password.[/vc_column_text][/vc_column][/vc_row]

// Constants for DOM elements const dropdownTriggers = document.querySelectorAll('.dz-menu-item.dropdown'); const dropdownContent = document.querySelector('.dz-dropdown-content'); const dropdownPanels = document.querySelectorAll('.dz-dropdown-panel'); const header = document.querySelector('.dz-header-wrap');// State to track the currently open menu item element let activeDropdownElement = null; let closeTimer = null; // Timer for delayed closing// Function to close all dropdowns function closeAllDropdowns() { if (closeTimer) { clearTimeout(closeTimer); closeTimer = null; } // Only proceed if the elements exist if (dropdownContent) { dropdownContent.classList.remove('open'); } dropdownPanels.forEach(panel => panel.classList.remove('active')); dropdownTriggers.forEach(item => item.classList.remove('active')); activeDropdownElement = null; }// Function to open a specific dropdown function openDropdown(item, targetPanel) { if (closeTimer) { clearTimeout(closeTimer); closeTimer = null; } // 1. Close all others closeAllDropdowns(); // 2. Open the new one item.classList.add('active'); targetPanel.classList.add('active'); if (dropdownContent) { dropdownContent.classList.add('open'); } activeDropdownElement = item; }// Event listener for each dropdown menu item dropdownTriggers.forEach(item => { item.addEventListener('click', function(e) { e.preventDefault(); const panelName = this.getAttribute('data-panel'); const targetPanel = document.querySelector(`.${panelName}`); if (!targetPanel) return;const isCurrentlyActive = this === activeDropdownElement;if (isCurrentlyActive) { // If the same dropdown is clicked, close it immediately. closeAllDropdowns(); } else { // Open the new dropdown openDropdown(this, targetPanel); } }); });/* --- MOUSE EVENTS FOR STABILITY FIX --- */ if (header) { // 1. When the mouse leaves the entire header area (menu + dropdown bar), start a timer to close it. header.addEventListener('mouseleave', () => { // Only initiate close if a dropdown is currently active if (activeDropdownElement) { // Set a delay (e.g., 300ms) to allow the user to move the mouse slightly closeTimer = setTimeout(closeAllDropdowns, 300); } });// 2. If the mouse re-enters the header area before the timer fires, cancel the close. header.addEventListener('mouseenter', () => { if (closeTimer) { clearTimeout(closeTimer); closeTimer = null; } }); }// 3. Close when clicking anywhere outside the header (as a fallback) document.addEventListener('click', (e) => { // Check if header exists and if the click is outside the header AND a dropdown is open if (header && !header.contains(e.target) && activeDropdownElement) { closeAllDropdowns(); } });// Initial setup: ensure all are closed on load document.addEventListener('DOMContentLoaded', closeAllDropdowns); window.addEventListener('load', closeAllDropdowns);
Üste Kaydır