Skip to content

chiehmin/pelican-encrypt-content

 
 

Repository files navigation

Encrypt Pelican Content

This plugin allows you to have password protected articles and pages in Pelican. The content is encrypted with AES-256 in Python using PyCrypto, and decrypted in the browser with Crypto-JS. It has been tested in Python 2.7 and Python 3.4.

####Requirements

  • Pelican 3.6+
  • PyCrypto (pip install pycrypto)

####Installation

Copy the encrypt_content folder to the root of your Pelican project (or somewhere that is accessible for importing).

Next, add the following to your pelicanconf.py file:

PLUGINS = ['encrypt_content']

####Settings

You can set a summary, as well as a title prefix to use for all encrypted articles. The default for both is a blank string.

In pelicanconf.py file:

ENCRYPT_CONTENT = {
    'title_prefix': '[Encrypted]',
    'summary': 'This content is encrypted.'
}

####Usage

Inside your source file, just add the password of your choosing:

ex.

######reStructuredText

That one time I robbed a bank 
###############################

:date: 1983-04-22
:tags: crime, banks, imabadass
:password: correcthorsebatterystaple

######Markdown

Title: That one time I robbed a bank
Date: 1983-04-22
Tags: crime, banks, imabadass
Password: correcthorsebatterystaple

####Earlier versions of Pelican

There is an older, crappier version of this plugin in the pelican-3.3 branch. Go nuts.

About

a pelican plugin to password protect content

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 58.7%
  • HTML 41.3%