An Uppy Plugin to encrypt files via the browser before they're uploaded. Decryption is handled browser-side as well.
Oh, also, it's fast AF. 🚀
Uppy Encrypt uses libsodium.js for all the cryptographical magic.
A live implementation of Uppy Encrypt can be seen on 0up.io [Source Code]
uppy-encrypt supports @uppy/core 3.x, 4.x, and 5.x. @uppy/core is a peer
dependency, so install it alongside uppy-encrypt:
| uppy-encrypt | @uppy/core |
|---|---|
^2.1.0 |
^3.7.1 || ^4.0.0 || ^5.0.0 |
^2.0.0 |
^3.7.1 || ^4.0.0 |
^1.0.0 |
^3.7.1 |
npm i uppy-encrypt @uppy/coreimport { Uppy } from '@uppy/core';
import { UppyEncryptPlugin } from 'uppy-encrypt';
const uppy = new Uppy();
uppy.use(UppyEncryptPlugin);
// Optional: Set password manually, or disregard and a random password will be auto-generated
// uppy.setMeta({ password: '$upers3cret!' });
uppy.on('complete', async (result) => {
for (const file of result.successful) {
const salt = file.meta.encryption.salt; // Salt value used to increase security
const header = file.meta.encryption.header; // Header encryption data to kick off the decryption process
const hash = file.meta.encryption.hash; // Secure 1-way hash of the password
const meta = file.meta.encryption.meta; // Encrypted file meta data (file name, type)
// ^ These are all safe to store in a database
}
});import { UppyDecrypt, uppyEncryptReady } from 'uppy-encrypt';
// Use the values generated from the encryption process
// Usually, these would be stored/retrieved from a database
const decrypt = async (hash, password, salt, header, meta, encryptedFileUrl) => {
// Ensure required libraries are loaded
await uppyEncryptReady();
// Verify provided password against the stored hash value
if (!UppyDecrypt.verifyPassword(hash, password)) {
// Invalid password
return;
}
// Decrypt Metadata
const decryptor = new UppyDecrypt(password, salt, header);
const decryptedMeta = decryptor.getDecryptedMetaData(meta.header, meta.data);
// Fetch & Decrypt the encrypted file
const file = await fetch(encryptedFileUrl);
const blob = await file.blob();
const decrypted = await decryptor.decryptFile(blob);
// Do something with the decrypted file, like download it
if (decrypted) {
const aElement = document.createElement('a');
aElement.setAttribute('download', decryptedMeta.name);
const href = URL.createObjectURL(decrypted);
aElement.href = href;
aElement.setAttribute('target', '_blank');
aElement.click();
URL.revokeObjectURL(href);
}
}