Download App & Changelog
Get the latest version of Encrypti0n.com and review our changelog for updates and fixes.
Download Latest Release
Download the most recent release of Encrypti0n.com from our GitHub repository for offline usage or review the changelog.
View Releases on GitHubAdd to Home Screen on iOS
Install Encrypti0n.com as a PWA on your iPhone or iPad for offline use:
- Open Safari and navigate to app.encrypti0n.com.
- Tap the Share button at the bottom of the screen.
- Scroll down and tap “Add to Home Screen”.
- Confirm the name and tap Add in the top-right corner.
- The app icon will appear on your home screen and works offline after loading the app for the first time.
Must be opened in Safari — other browsers on iOS do not support PWA installation.
Add to Home Screen on Android
Install Encrypti0n.com as a PWA on your Android device for offline use:
- Open Chrome and navigate to app.encrypti0n.com.
- Tap the three-dot menu in the top-right corner.
- Tap “Add to Home screen”.
- Confirm by tapping Add in the prompt.
- The app icon will appear on your home screen and works offline after loading the app for the first time.
Chrome may also show an automatic install banner at the bottom of the screen — tap it to install directly.
Run via HTTP on macOS
To serve the app locally and allow ES6 modules to load correctly, follow these steps:
Using Python
- Navigate to the releases page from above and download the source code from the latest release and extract it.
- Open Terminal.
- Navigate to the extracted folder, e.g.:
cd ~/Downloads/your-app-folder - Start the server:
python3 -m http.server 8000 - In your browser, visit http://localhost:8000
Official References
Run via HTTP on Windows
To serve the app locally and allow ES6 modules to load correctly, choose one of the following:
Using Python
- Navigate to the releases page from above and download the source code from the latest release and extract it.
- Open PowerShell or CMD.
- Navigate to the extracted folder, e.g.:
cd C:\Users\YourName\Downloads\your-app-folder - Start the server:
python -m http.server 8000 - In your browser, visit http://localhost:8000
Using Node.js
- Install `http-server` globally (if not already):
npm install -g http-server - From your app folder, run:
http-server -p 8000 - Open http://localhost:8000