Help
What is Sendmeafile
Sendmeafile allows you to generate upload links for other people to send you files, huge files up to 1TB, and you can generate download links where others can download huge files that you uploaded for them.
You can control with password and IP Addresses who uploads/downloads files. Then you can see when and from which IP Address the files were uploaded/downloaded.
The system also calculates the Hash of the files automatically, in order to verify that they arrived uncorrupted.
Automations
The project allows you to automate uploads, like Backups, and allows AI agents to upload files to you securely.
How to calculate the hash (checksum) of a file
How to calculate the hash (checksum) of a file, so you can verify your upload arrived intact. Replace FILE with the path to your file.
Calculate a file hash on Linux
Open a terminal and run one of these commands:
sha256sum FILE sha512sum FILE md5sum FILE
Calculate a file hash on Windows
Open PowerShell and run one of these commands (the output is uppercase; our site compares without regard to case):
Get-FileHash -Algorithm SHA256 FILE Get-FileHash -Algorithm SHA512 FILE Get-FileHash -Algorithm MD5 FILE
Calculate a file hash on macOS
Open the Terminal app and run one of these commands:
shasum -a 256 FILE shasum -a 512 FILE md5 FILE
sha256sum and sha512sum are not preinstalled on macOS. To use them, install coreutils (they then become available as gsha256sum / gsha512sum), for example with: brew install coreutils
Paste the resulting value into the "Hash" field when you upload the file, and we will verify it matches the file we received.