How to Create Encrypter & Decrypter With Password Tool in your Blog - Post or Page
Hey Guys! Welcome back to Techly Series website.
Assuming You are observing the Encrypter & Decrypter With Password Tool Script on blogger. This is the Right Place to you. Since You can get this Script for free and gain deep pocket With Your adsense.
Today, in this article, I will Discuss with you about How to Create Encrypter & Decrypter With Password Tool in Blog - Post or Page.
What is Encryption & Decryption
Encryption is an interaction which changes the first data into an unrecognizable structure. This new type of the message is completely unique in relation to the first message. That is the reason a programmer can't peruse the information as shippers utilize an encryption calculation. Encryption is typically done utilizing key calculations.
Information is encoded to make it protected from taking. In any case, many realized organizations additionally scramble information to keep their proprietary advantage from their rivals.
Decryption is a process of changing over encoded/scrambled information in a structure that is meaningful and perceived by a human or a PC. This strategy is performed by un-scrambling the text physically or by utilizing keys used to encrypt the first information.
Benefits of Encryption & Decryption
- Assists you with safeguarding your classified information like passwords and login id.
- Gives secrecy of private data.
- Assists you with guaranteeing that that the archive or record has not been modified.
- Encryption process additionally forestalls literary theft and safeguards IP.
- Supportive for network correspondence (like the web) and where a programmer can undoubtedly get to decoded information.
- It is a fundamental technique as it assists you with safely safeguarding information that you don't need any other individual to approach.
How to Create
So, to create Encrypter & Decrypter With Password Tool on blogger you need to follow the following process below precisely.
What's more, with the help of these steps, you can easily make this tool in your blogger website.
Step 1
- You will go to your - Blogger Dashboard
- Go to Theme
- Go to - Edit HTML
- Search - </head> or </head>
- Copy this CSS Code below and Paste on top of </head> or </head>
- Save Theme
You must back up your theme before go to Edit HTML
<link rel='stylesheet' href='https://cdn.jsdelivr.net/gh/itsTSUI/tsP/toolBody.css'/>
<script crossorigin='anonymous' src='https://kit.fontawesome.com/4ad360bfd2.js'/>
Step 2
- After Save Theme
- Create a new Post or Page
- Copy this HTML & Javascript Code below and Paste in your blog - Post or Page
- Publish
<div class="Tbody">
<b>Paste or Type Your Text</b>
<textarea id="originalContent" rows="15" placeholder="Type Your Text Here..."></textarea>
<b>Enter Password for Encryption</b>
<input type="password" id="passcode" placeholder="Type Your Password Here..."/>
<button type="button" class="encrypt" onclick="webdevencrypt.setEncrypt('originalContent','edContent','passcode')"><i class="fa fa-lock"></i>Encrypt</button>
<button type="button" class="encrypt" onclick="webdevencrypt.setDecrypt('originalContent','edContent','passcode')"><i class="fa fa-unlock"></i>Decrypt</button>
<b>Encrypted / Decrypted</b>
<textarea id="edContent" rows="15" placeholder="Get Your Text Here..." readonly></textarea>
</div>
<script>
var webdevencrypt={setEncrypt:function(e,t,n){document.getElementById(t).innerText=this.encryptCodes(document.getElementById(e).value,document.getElementById(n).value)},setDecrypt:function(){document.getElementById("edContent").innerText=this.decryptCodes(document.getElementById("originalContent").value,document.getElementById("passcode").value)},encryptCodes:function(e,t){for(var n=[],r=t.length,d=0;d<e.length;d++){var o=d%r,c=e.charCodeAt(d)+t.charCodeAt(o);n.push(c)}return JSON.stringify(n)},decryptCodes:function(e,t){for(var n=[],r="",d=JSON.parse(e),o=t.length,c=0;c<d.length;c++){var u=c%o,a=d[c]-t.charCodeAt(u);n.push(a)}for(c=0;c<n.length;c++){r+=String.fromCharCode(n[c])}return r}};
</script>
Final Words
You ought to indeed note by thinking in the remark box underneath. Or on the other hand you moreover bear to give some sort of Suggestion, likewise you can partake your conviction with me in the Comment Box beneath.
I didn't give this content to any individual who saw or replicated them. This content I've looked through a great deal and given by experience. So kindly don't note on this substance.
Assuming you experience any issues while copying this script you can impart me by Telegram and I'll attempt to help.
Post a Comment