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.

සංකේතනය කර ඇති ගොනු දැන් යවන්න