https://github.com/tuynuk/tuynuk-mobile
Tuynuk is a secure file transfer application that offers robust encryption and reliable transmission of sensitive data.
https://github.com/tuynuk/tuynuk-mobile
diffie-hellman e2ee encryption file flutter shorebird transfer
Last synced: 6 months ago
JSON representation
Tuynuk is a secure file transfer application that offers robust encryption and reliable transmission of sensitive data.
- Host: GitHub
- URL: https://github.com/tuynuk/tuynuk-mobile
- Owner: Tuynuk
- License: apache-2.0
- Created: 2024-07-07T18:32:30.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-08-28T08:58:03.000Z (about 1 year ago)
- Last Synced: 2025-03-26T23:11:23.402Z (7 months ago)
- Topics: diffie-hellman, e2ee, encryption, file, flutter, shorebird, transfer
- Language: Dart
- Homepage:
- Size: 24.9 MB
- Stars: 6
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Tuynuk
## Overview
Tuynuk is a mobile application designed for secure, temporary file transfer. With this
app, users can send and receive encrypted files within disposable sessions, ensuring that their data
remains private and is not stored long-term. Built using Flutter and Dart, the app leverages
advanced cryptographic techniques to provide robust security features, making it ideal for users who
need a secure and ephemeral file transfer solution.
## Features
- **Disposable Sessions**: Create temporary file transfer sessions that automatically expire after a
certain period, ensuring no long-term data retention.
- **End-to-End Encryption (E2EE)**: Secure files with AES encryption and elliptic curve
cryptography, guaranteeing that only the intended recipient can access them.
- **Asynchronous Operations**: Use Dart isolates to handle encryption and decryption tasks in the
background, providing a smooth user experience.
- **Automatic Key Management**: Generate and manage encryption keys for each session automatically,
simplifying the user experience while maintaining security.
- **User-Friendly Interface**: Enjoy a simple and intuitive interface designed for quick and easy
secure file transfer.## Screenshots

## Installation
1. Clone the repository:
```bash
git clone https://github.com/xaldarof/tuynuk.git2. Get dependencies:
```bash
flutter pub get3. Configure project
```bash
sh sync.sh4. Run the application:
```bash
flutter run## Usage
### Creating a Disposable Session
1. Open the app and tap the "New Session" button.
2. Select a contact to start a new file transfer session.
3. Transfer files securely within the session. All files will be encrypted and only accessible
within this session.### Sending and Receiving Files
1. Within an active session, select the file you wish to send.
2. The file will be encrypted and sent to the recipient.
3. The recipient can then decrypt and access the file within the session.### Session Expiry
1. Sessions are designed to expire after a predefined period.
2. Once a session expires, all files within the session will be permanently deleted, ensuring no
residual data remains.## Technical Details
### AES Encryption and Decryption
The app uses AES encryption in CBC mode with PKCS7 padding for secure file encryption. Encryption
and decryption can be handled asynchronously using Dart isolates for optimal performance.### Elliptic Curve Cryptography
Tuynuk utilizes elliptic curve cryptography (ECC) for secure key exchanges and session
key generation, ensuring that all cryptographic operations adhere to industry standards.### Secure Random Number Generation
The app employs a cryptographically secure random number generator to create encryption keys and
initialization vectors, providing high security for all cryptographic processes.### Key Management
The app automatically handles key generation and management for each session, making it easy for
users to focus on file transfer without worrying about cryptographic details.### Backend
The backend for Tuynuk is available on GitHub and provides the necessary server-side support for the application's functionality. You can find the backend repository [here](https://github.com/niyozbekmirzayev/Tuynuk).
## Contributing
We welcome contributions to Tuynuk! Please submit pull requests and open issues to help
improve the application.