Secure password delivery
How does it work?
The sender types the password or secret code that should be securely delivered, selects a PIN code and expiry time in the form above. The service generates a random 32 character key used to encrypt the data and stores the encrypted data in a database. The key is included in the provided url which is later used to decrypt the data for the receiver. If a PIN is provided, the receiver is unable to decrypt the data unless the correct PIN is entered.
Is it safe?
Yes, the data can only be decrypted with the randomly generated key. The key is never stored making the data only available for those who have access to the generated link. Once the data has been decrypted once, the data is removed permanently making the link unusable. If the data isn't decrypted within the specified number of days the data is permanently deleted.
If a PIN is provided, the data is first encrypted using the PIN and then again using the random key generated. The PIN is never stored and is not a part of the shared link.
The data is encypted using Advanced Encryption Standard (AES) with a 256bit key size.