Military-grade security

एन्क्रिप्ट/डिक्रिप्ट फ़ाइलों के बारे में

Learn how SendFilesEncrypted protects your files with zero-knowledge encryption

The Encryption Journey

Your files are protected every step of the way

📄
Your File
Unencrypted
🔐
Your Browser
AES-256 Encryption
🔒
Our Servers
Encrypted Only

Step-by-Step Process

1

You Upload a File

Sendfilesencrypted.com पर हम आपकी फ़ाइलों की सुरक्षा की परवाह करते हैं और हम चाहते हैं कि ऑनलाइन फ़ाइलें साझा करने का आपका अनुभव सुरक्षित और सुरक्षित हो।

2

Browser Generates a Key

यही कारण है कि हमने मुफ्त फ़ाइल एन्क्रिप्शन कार्यक्षमता लागू की है।

3

File is Encrypted

आपके द्वारा Sendfilesencrypted.com में साझा की जाने वाली सभी फ़ाइलें हमारे सर्वर पर अपलोड होने से पहले एन्क्रिप्ट की जा रही हैं, यह आपके द्वारा साझा की जाने वाली प्रत्येक फ़ाइल में सुरक्षा की एक परत जोड़ती है, किसी भी व्यक्ति या खतरे को उन तक पहुंचने से रोकती है।

4

Encrypted File is Uploaded

उसी तरह, आपकी सभी फ़ाइलें आपके ब्राउज़र में आपके द्वारा अपलोड किए गए पासवर्ड का उपयोग करके डिक्रिप्ट की जाती हैं, इससे यह सुनिश्चित होता है कि यदि कोई हमलावर आपकी फ़ाइलों तक पहुँचता है, तो वे पूरी तरह से एन्क्रिप्ट हो जाएंगे।

5

Recipient Downloads

यहां बताया गया है कि हम आपकी फ़ाइलों को हमारे सर्वर पर अपलोड और संग्रहीत करने से पहले कैसे एन्क्रिप्ट करते हैं।

Technical Details

For security experts and the technically curious

🔐

AES-256-GCM

कोड आपकी फाइलों को कई छोटी फाइलों में तोड़ देता है, प्रत्येक टुकड़ा उस पासवर्ड का उपयोग करके एन्क्रिप्ट किया जाता है जिसका उपयोग आपने उन्हें अपलोड करने के लिए किया था और फाइलों के प्रत्येक समूह के लिए एक अद्वितीय कोड, यह आपकी फाइलों को और भी अधिक सुरक्षा देता है। इस प्रक्रिया के बाद एन्क्रिप्टेड फ़ाइल का प्रत्येक टुकड़ा हमारे सर्वर पर अपलोड और संग्रहीत किया जाता है। यह सुनिश्चित करता है कि हम, डेवलपर भी, आपकी फ़ाइलों तक नहीं पहुंच सकते।

🔑

PBKDF2 Key Derivation

600,000 iterations transform your password into a secure encryption key, making brute-force attacks computationally infeasible.

🛡️

Zero-Knowledge Architecture

अब मैं आपको दिखाऊंगा कि हम आपकी फाइलों को कैसे डिक्रिप्ट करते हैं।

🔒

TLS Transport

याद रखें कि प्रत्येक मूल फ़ाइल एन्क्रिप्टेड फ़ाइलों के कई टुकड़ों में बदल गई है, जो कि हमारे सर्वर पर संग्रहीत हैं। प्रत्येक टुकड़ा ब्राउज़र में डाउनलोड किया जाता है और फिर आपके द्वारा दर्ज किया गया पासवर्ड और फ़ाइल ब्लॉक के अद्वितीय कोड का उपयोग प्रत्येक टुकड़े को डिक्रिप्ट करने में सक्षम होने के लिए किया जाता है जो आपकी मूल फ़ाइल के कई अन्य डिक्रिप्ट किए गए टुकड़ों में शामिल हो जाएगा और फिर बनाएं और डाउनलोड करें मूल फ़ाइल।

See the Code

Our encryption implementation is transparent. Here's a simplified version of how we encrypt your files:

encryption.js
// Derive encryption key from password
async function deriveKey(password, salt) {
  const encoder = new TextEncoder();
  const keyMaterial = await crypto.subtle.importKey(
    'raw',
    encoder.encode(password),
    'PBKDF2',
    false,
    ['deriveBits', 'deriveKey']
  );

  return crypto.subtle.deriveKey(
    {
      name: 'PBKDF2',
      salt: salt,
      iterations: 600000,  // High iteration count
      hash: 'SHA-256'
    },
    keyMaterial,
    { name: 'AES-GCM', length: 256 },
    false,
    ['encrypt', 'decrypt']
  );
}

// Encrypt file data
async function encryptFile(fileData, password) {
  const salt = crypto.getRandomValues(new Uint8Array(16));
  const iv = crypto.getRandomValues(new Uint8Array(12));
  const key = await deriveKey(password, salt);

  const encrypted = await crypto.subtle.encrypt(
    { name: 'AES-GCM', iv: iv },
    key,
    fileData
  );

  return { encrypted, salt, iv };
}

This is a simplified example. Our actual implementation includes additional security measures.

⚠️

Important Security Note

पासवर्ड के बिना, आपकी फ़ाइलों को डिक्रिप्ट करना हमारे लिए असंभव होगा और आपको एक दूषित फ़ाइल मिलेगी जिसे पढ़ना असंभव है।

जैसा आपने पढ़ा है?

Send your first encrypted file in seconds. No account required.

अभी एन्क्रिप्टेड फ़ाइलें भेजें