Sometimes, we would like to share some encrypted text via a public network, such as publishing a encrypted blog post, so that the people who have the passphrase could see.
In this blog post, I would like to quickly discuss how to create a encrypted blog post that can be viewed with a passphrase on a static website.
<div> <p> Please enter the password to view the blog post. <p> <formid="my_form"> <p> <labelfor="password">Password: </label> <inputtype="text"id="password"name="password"value="password123"><br> </p> </form> <br>
The encrypted blog post on a static website can always be cracked by brute force approaches. So it is not recommended to put extremely important and private texts there.