From dc1e287f128c06067fe5ea2f65aea4fd296b89a3 Mon Sep 17 00:00:00 2001 From: StepanovPlaton Date: Tue, 3 Feb 2026 14:34:19 +0400 Subject: [PATCH] =?UTF-8?q?Delete=20Posts=20=E2=80=9Cencryption=E2=80=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/content/posts/encryption.md | 36 --------------------------------- 1 file changed, 36 deletions(-) delete mode 100644 src/content/posts/encryption.md diff --git a/src/content/posts/encryption.md b/src/content/posts/encryption.md deleted file mode 100644 index 0e3d124..0000000 --- a/src/content/posts/encryption.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -draft: false -encrypted: true -title: Encryption Example22 -published: 2020-02-02 -pinned: false -description: "Password: 123456" -tags: - - Encryption -password: "123456" -category: Examples ---- -# Password Protected Post22 - -This is an example of a password-protected post in the Twilight theme. The content below is encrypted using AES and can only be viewed by entering the correct password. - -## Frontmatter Example - -```yaml ---- -title: Encryption Example -published: 2020-02-02 -encrypted: true -password: "your-password" -... ---- -``` - -* `encrypted` - Whether encryption is enabled for the post. -* `password` - The password required to unlock the content. - -## Note - -:::warning -Do not use this for extremely sensitive information like bank passwords or private keys. The encryption happens on the client side, and the password itself is stored in the post's metadata (though usually not displayed directly). -:::