Description
A single-file browser-based application which turns your private messages into clickable, encrypted links. Set a shared secret (password) with your friends and send "linked" PMs through unencrypted channels (email, sms, facebook etc) or paste them into documents (also in the form of QR code). Uses Java Script client-side encryption.
Linked.PM alternatives and similar software solutions
Based on the "Pastebins" category.
Alternatively, view Linked.PM alternatives based on common mentions on social networks and blogs.
-
PrivateBin
A minimalist, open source online pastebin where the server has zero knowledge of pasted data. Data is encrypted/decrypted in the browser using 256 bits AES. -
Sup3rS3cretMes5age
Simple to use, simple to deploy, one time self destruct messaging service, with hashicorp vault as a backend -
Modern Paste
DISCONTINUED. Modern pastebin with a contemporary, minimalistic user interface backed by a robust feature set. -
Paaster.io
Paaster is a secure and user-friendly pastebin application that prioritizes privacy and simplicity. With end-to-end encryption and paste history, Paaster ensures that your pasted code remains confidential and accessible. -
cryptonote
:lock: A simple open source web application that lets users encrypt and share messages that can only be read once. -
ZeroBin
DISCONTINUED. This Project has been renamed and moved to https://github.com/PrivateBin/PrivateBin -
localpaste
a simple python based pastebin you can run locally, with curl for input, just like clbin.com -
Phaste
DISCONTINUED. A Phalcon-based, MySQL pastebin application with privacy-respecting Piwik integration and syntax highlighting.
CodeRabbit: AI Code Reviews for Developers

* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of Linked.PM or a related project?
README
Linked.PM
A single-file browser-based application which turns your private messages into clickable, encrypted links.
Set a shared secret (password) with your friends and send "linked" PMs through unencrypted channels (email, sms, facebook etc) or paste them into documents (also in the form of QR code).
[Screenshot of Linked.PM application](img/screenshot.png)
Example
The QR code below contains a Linked PM:
[QRCode](img/example-qrcode.png)
The password is topsecret.
Details
Messages are encrypted using AES-CCM cipher (Advanced Encryption Standard (AES) in Counter with CBC-MAC Mode (CCM)) and 256 bits key computed from your password using 10000 rounds of PKDF2 key derivation algorithm. During each encryption additional parameters like salt and IV (initialization vector) are randomly generated, so it is unlikely that the same message with the same password will generate the same link next time you use linked.pm.
The ciphertext (with salt and IV) is stored in the hash part of URL and its processing is exclusively client-side with no participation from the server (browsers do not send this part of URL to the server).
In fact you can save linked.pm application (a single file) on your desktop and use it offline.
Build
To build the application follow these steps:
git clone https://github.com/simplito/linked-pm.git
cd linked-pm
npm install
gulp
The resulting apllication file can be found in dist/index.html
.
License
The MIT License (MIT)
Copyright (c) 2016 Simplito Inc.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*Note that all licence references and agreements mentioned in the Linked.PM README section above
are relevant to that project's source code only.