Rebrand for general file usage. Added donation link to README

This commit is contained in:
Peter Ryszkiewicz 2017-09-03 14:17:58 -05:00
parent b2dfa35317
commit 50f611c4be
3 changed files with 28 additions and 24 deletions

View File

@ -1,18 +1,18 @@
# IOTA Seed Encryptor/Decryptor
Encrypts and decrypts your IOTA seeds.
# Easy File Encryptor/Decryptor
Encrypts and decrypts your files and text.
[View the page hosted on GitHub Pages here.](https://prizz.github.io/iota-seed-encryptor-decryptor/)
[View the page hosted on GitHub Pages here.](https://prizz.github.io/Easy-File-Encryptor-Decryptor/)
# Secure Usage of this Webapp
This webapp does not store or transmit your data. But to be safe, in case of malware, or rogue browser extensions, follow these steps:
* [Download this webapp](https://github.com/pRizz/iota-seed-encryptor-decryptor/archive/master.zip) for offline use
* [Download this webapp](https://github.com/pRizz/Easy-File-Encryptor-Decryptor/archive/master.zip) for offline use
* Disconnect from the internet
* Open this webapp (the index.html file) in incognito, or private browsing mode, with no extensions, or all extensions disabled
* Encrypt and Decrypt
* Quit your browser
# How does this work?
IOTA Seed Encryptor/Decryptor utilizes symmetric encryption from the [PGP protocol](https://en.wikipedia.org/wiki/Pretty_Good_Privacy). Your password acts as the symmetric key during the encryption and decryption process.
Easy File Encryptor/Decryptor utilizes symmetric encryption from the [PGP protocol](https://en.wikipedia.org/wiki/Pretty_Good_Privacy). Your password acts as the symmetric key during the encryption and decryption process.
The PGP implementation used in this project comes from the open source project [OpenPGP.js](https://github.com/openpgpjs/openpgpjs)
@ -32,13 +32,13 @@ gpg file.txt.pgp
And enter in the passphrase
# Disclaimer
This project is not affiliated with the IOTA Foundation. You use this software at your own risk. I, Peter Ryszkiewicz, am not responsible for any misuse or abuse of this software. See the MIT License below for more details.
You use this software at your own risk. I, Peter Ryszkiewicz, am not responsible for any misuse or abuse of this software. See the MIT License below for more details.
# About the Author
This project was originally created by Peter Ryszkiewicz [pRizz@Github](https://github.com/pRizz), software engineer in Chicago, IL. Beware of copycats.
# About the Project
This project is hosted on GitHub at [https://github.com/pRizz/iota-seed-encryptor-decryptor](https://github.com/pRizz/iota-seed-encryptor-decryptor) under the MIT license.
This project is hosted on GitHub at [https://github.com/pRizz/Easy-File-Encryptor-Decryptor](https://github.com/pRizz/Easy-File-Encryptor-Decryptor) under the MIT license.
# License
```
@ -64,3 +64,7 @@ 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.
```
# Donate
To support this project, you can donate IOTA to this address
`ARDPDHLZPQZRDBPKTZBIK9OFKCJMGCHFQJTQEXL9KRIVSHNRGHJCEOCMRFXGJMQXDVGNFTTS9GUIOJXXW9RONFYJKW`

View File

@ -7,7 +7,7 @@
<meta name="author" content="">
<link rel="icon" type="image/x-icon" href="https://assets-cdn.github.com/favicon.ico">
<title>IOTA Seed Encryptor/Decryptor</title>
<title>Easy File Encryptor/Decryptor</title>
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
@ -31,21 +31,21 @@
<a class="nav-link active" href="" onclick="window.location.reload(true)">Refresh</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://github.com/pRizz/iota-seed-encryptor-decryptor">Source</a>
<a class="nav-link" href="https://github.com/pRizz/Easy-File-Encryptor-Decryptor">Source</a>
</li>
</ul>
</nav>
<h3 class="text-muted">IOTA Seed Encryptor/Decryptor</h3>
<h3 class="text-muted">Easy File Encryptor/Decryptor</h3>
</div>
<div class="row marketing">
<div class="col-md-6">
<div class="panel panel-primary" style="text-align: center">
<div class="panel-heading">
<h2><strong>Encrypt</strong> your seed(s)</h2>
<h2><strong>Encrypt</strong> your text</h2>
</div>
<div class="panel-body">
<div class="form-group">
<h3>Paste your seed(s) here</h3>
<h3>Write your text here</h3>
<textarea class="form-control" id="dataToEncrypt" rows="3"></textarea>
</div>
<div class="form-group">
@ -59,7 +59,7 @@
</div>
<div class="panel panel-primary" style="text-align: center">
<div class="panel-heading">
<h2><strong>Encrypt</strong> your seed file</h2>
<h2><strong>Encrypt</strong> your text file</h2>
</div>
<div class="panel-body">
<form id="fileToEncryptForm" novalidate class="box">
@ -84,7 +84,7 @@
<div class="col-md-6">
<div class="panel panel-primary" id="usdToMIOTAPanel" style="text-align: center">
<div class="panel-heading">
<h2><strong>Decrypt</strong> your seed(s)</h2>
<h2><strong>Decrypt</strong> your file</h2>
</div>
<div class="panel-body">
<form id="fileToDecryptForm" novalidate class="box">
@ -119,7 +119,7 @@
This webapp does not store or transmit your data. But to be safe, in case of malware, or rogue browser extensions, follow these steps:
</h3>
<h3>
- <a href="https://github.com/pRizz/iota-seed-encryptor-decryptor/archive/master.zip">Download this webapp</a> for offline use
- <a href="https://github.com/pRizz/Easy-File-Encryptor-Decryptor/archive/master.zip">Download this webapp</a> for offline use
</h3>
<h3>
- Disconnect from the internet
@ -143,7 +143,7 @@
<div class="col-md-8 col-md-offset-2">
<h1>How does this work?</h1>
<h2>
IOTA Seed Encryptor/Decryptor utilizes symmetric encryption from the <a href="https://en.wikipedia.org/wiki/Pretty_Good_Privacy">PGP protocol</a>. Your password acts as the symmetric key during the encryption and decryption process.
Easy File Encryptor/Decryptor utilizes symmetric encryption from the <a href="https://en.wikipedia.org/wiki/Pretty_Good_Privacy">PGP protocol</a>. Your password acts as the symmetric key during the encryption and decryption process.
</h2>
<h2>
The PGP implementation used in this project comes from the open source project <a href="https://github.com/openpgpjs/openpgpjs">OpenPGP.js</a>
@ -170,7 +170,7 @@
<div class="col-md-8 col-md-offset-2">
<h1>Disclaimer</h1>
<h2>
This project is not affiliated with the IOTA Foundation. You use this software at your own risk. I, Peter Ryszkiewicz, am not responsible for any misuse or abuse of this software. See the MIT License below for more details.
You use this software at your own risk. I, Peter Ryszkiewicz, am not responsible for any misuse or abuse of this software. See the MIT License below for more details.
</h2>
</div>
</div>
@ -188,7 +188,7 @@
<div class="col-md-8 col-md-offset-2">
<h1>About the Project</h1>
<h2>
This project is hosted on GitHub at <a href="https://github.com/pRizz/iota-seed-encryptor-decryptor">https://github.com/pRizz/iota-seed-encryptor-decryptor</a> under the MIT license.
This project is hosted on GitHub at <a href="https://github.com/pRizz/Easy-File-Encryptor-Decryptor">https://github.com/pRizz/Easy-File-Encryptor-Decryptor</a> under the MIT license.
</h2>
</div>
</div>
@ -220,8 +220,8 @@ SOFTWARE.
</div>
</div>
<footer class="footer">
<p><a href="https://github.com/pRizz/iota-seed-encryptor-decryptor">Fork this on GitHub!</a></p>
<p><a href="https://github.com/pRizz/iota-seed-encryptor-decryptor/archive/master.zip">Download this webapp</a> for offline use
<p><a href="https://github.com/pRizz/Easy-File-Encryptor-Decryptor">Fork this on GitHub!</a></p>
<p><a href="https://github.com/pRizz/Easy-File-Encryptor-Decryptor/archive/master.zip">Download this webapp</a> for offline use
</p>
<p>
If you found this useful, consider donating IOTA to:

View File

@ -1,6 +1,6 @@
/**
* Created by Peter Ryszkiewicz on 8/10/2017.
* https://github.com/pRizz/iota-seed-encryptor-decryptor
* https://github.com/pRizz/Easy-File-Encryptor-Decryptor
*/
var $dataToEncrypt
@ -42,7 +42,7 @@ function encryptData() {
const currentDateString = new Date().toISOString()
const downloadLink = $('<a></a>', {
href: generatedEncryptedFile,
download: `iotaSeeds-${currentDateString}.pgp`
download: `encrypted-${currentDateString}.pgp`
}).appendTo('body')
downloadLink[0].click()
downloadLink.remove()
@ -80,7 +80,7 @@ function encryptFileData() {
const currentDateString = new Date().toISOString()
const downloadLink = $('<a></a>', {
href: generatedEncryptedFile,
download: `iotaSeeds-${currentDateString}.pgp`
download: `encrypted-${currentDateString}.pgp`
}).appendTo('body')
downloadLink[0].click()
downloadLink.remove()
@ -121,7 +121,7 @@ function decryptFileData(action) {
const currentDateString = new Date().toISOString()
const downloadLink = $('<a></a>', {
href: generatedDecryptedFile,
download: `iotaSeeds-${currentDateString}.txt`
download: `decrypted-${currentDateString}.txt`
}).appendTo('body')
downloadLink[0].click()
downloadLink.remove()