DokuWiki

It's better when it's simple

User Tools

Site Tools


plugin:dokucrypt2

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
plugin:dokucrypt2 [2017-08-01 22:25] – [Releases] 87.178.111.40plugin:dokucrypt2 [2024-03-12 02:43] (current) Fumigator2
Line 2: Line 2:
  
 ---- plugin ---- ---- plugin ----
-description: A plugin to support client side cryptography. +description: A plugin to support client side cryptography 
-author     : Scott Moser (smoser@brickies.net), maintained by Sherri W. (@SherriOnline / http://SyntaxSeed.com)+author     : Scott Moser (smoser@brickies.net), maintained by Sherri Wheeler. (Twitter @SyntaxSeed / SyntaxSeed.com)
 type       : admin type       : admin
-lastupdate : 2017-06-26 +lastupdate : 2022-08-08 
-compatible : 2012-10-132017-02-19b++compatible : 2018-04-22b+2020-07-29+
 depends    :  depends    : 
-conflicts  : aceeditor+conflicts  : aceeditor, fastwiki
 similar    : dokucrypt similar    : dokucrypt
 tags       : encryption, password tags       : encryption, password
  
-downloadurl: http://syntaxseed.com/downloads/plugin-dokucrypt2.zip +downloadurl: https://github.com/syntaxseed/dokucrypt2/archive/master.zip 
-bugtracker : # eg. http://github.com/sherri/dokuwiki-plugin-dokucrypt2/issues+bugtracker : https://github.com/syntaxseed/dokucrypt2/issues
 sourcerepo : https://github.com/syntaxseed/dokucrypt2 sourcerepo : https://github.com/syntaxseed/dokucrypt2
 donationurl:  donationurl: 
 +
 ---- ----
  
-:!: This replaces the: [[plugin:dokucrypt|Original DokuCrypt Plugin]].+This replaces the: [[plugin:dokucrypt|Original DokuCrypt Plugin]]. 
 + 
 +:!: I am looking for a new maintainer for this plugin. If interested, please contact me via my business contact form (https://www.avinus.com/contact).  --- [[user>sherri|sherri]] //2023-09-05 17:09//
  
  
 ===== Installation ===== ===== Installation =====
  
-This is a newly maintained version of the DokuCrypt plugin. It is fully patched for the latest version of Dokuwiki (last tested on Release 2017-02-19b "Frusterick Manners").+This is a newly maintained version of the DokuCrypt plugin. It is fully patched for the latest version of Dokuwiki.
  
-The [[http://syntaxseed.com/downloads/plugin-dokucrypt2.zip|download url]] above is the latest one. Install via the extension manager.+  * Fully tested on2018-04-22b+ "Greebo" 
 +  * Fully tested on:: 2020-07-29 "Hogfather"(Use version 2020-10-19 or later of DokuCrypt2.)
  
-Note: I have copied and updated this plugin due to it being very important for my day-to-day use. The original author hasn't touched it in years, and I hope he won't mind8-)+Search and install the plugin using the [[plugin:extension|Extension Manager]]. Refer to [[:Plugins]] on how to install plugins manually.
  
 +Note: Plugin is now maintained by Sherri Wheeler.
  --- [[user>sherri|Sherri]] //2017-06-26 04:45//  --- [[user>sherri|Sherri]] //2017-06-26 04:45//
 +
  
 ====== About ====== ====== About ======
Line 36: Line 42:
  
 The Javascrypt (http://www.fourmilab.ch/javascrypt/) library is used for encryption and decryption to provide 256 Bit AES encryption. The Javascrypt (http://www.fourmilab.ch/javascrypt/) library is used for encryption and decryption to provide 256 Bit AES encryption.
 +
 +:!: **Warning:** This plugin should not replace a password manager or peer reviewed cryptography tools for high-priority use. Do not store mission critical type data with this plugin - I cannot be sure that the info is not cached by DokuWiki or the web browser.  --- [[user>sherri|sherri]] //2020-10-14 19:55//
 +
 +:!: **This plugin is provided without warranty or guarantee of any kind. Use at your own discretion.** --- [[user>sherri|sherri]] //2020-10-14 19:55//
 +
 +===== Releases =====
 +
 +  * 2022-08-08: Added ability and setting for copying the contents to the clipboard on decrypt.
 +    * Contributed by Thomas Schäfer (https://github.com/ternite).
 +  * 2022-02-02: Preparatory fixes/testing for PHP 8. Improvements for code style PSRs.
 +  * 2021-05-18: Fix for internal link edit toolbar button. Issue #12.
 +  * 2021-03-03: Add wrapping for the pre tag. Contributed by dustin-something.
 +  * 2020-10-19: Cosmetic changes, add CSS classes, collapse blocks by default.
 +  * 2020-10-14: Temp fix for Dokuwiki 2020-07-29 "Hogfather". DecryptSecret button was not appearing on page edit.
 +  * 2020-02-07: Updated for PHP v 7+.
 +  * 2017-11-08: Fixed an issue with the heading buttons 'PATCH 1' required (above). Added plugin info text file.
 +  * 2017-06-25: Fork the original plugin. Patch it up. Release for most recent DokuWiki version. Cheers! 
  
 ===== Usage ===== ===== Usage =====
Line 44: Line 67:
  
   Hi world.  I have a secret.  Can you read it?   Hi world.  I have a secret.  Can you read it?
-  < SECRET>I like ice cream< /SECRET> +  <SECRET>I like ice cream.</SECRET>
- +
-  * **Note:** the space before 'SECRET' must be removed+
  
 When the user hits 'Save' (or a draft is attempted to be saved) a prompt will open, asking the user to enter a pass phrase key for the encryption.  Once supplied, the encryption will be done in the browser and the encrypted text submitted to the server. When the user hits 'Save' (or a draft is attempted to be saved) a prompt will open, asking the user to enter a pass phrase key for the encryption.  Once supplied, the encryption will be done in the browser and the encrypted text submitted to the server.
 +
 +=== Special Characters ===
 +
 +The less-than (<) and greater-than(>) symbols, if included in the enclosed text to encrypt, will break the decryption and cause some content to not be shown. To enter these characters in your content to be encrypted, use their HTML entity equivalents:
 +
 +  * < = Use: ''&lt;''
 +  * > = Use: ''&gt;''
  
 ==== Viewing Encrypted Data ==== ==== Viewing Encrypted Data ====
Line 55: Line 83:
  
 The encrypted text is compatible with javascrypt decryption (http://www.fourmilab.ch/javascrypt/jscrypt.html). The encrypted text is compatible with javascrypt decryption (http://www.fourmilab.ch/javascrypt/jscrypt.html).
 +
  
 ==== Editing Encrypted Data ==== ==== Editing Encrypted Data ====
Line 60: Line 89:
 To edit the encrypted data, the user needs to Edit the wiki page.  When first loaded, encrypted text will appear encrypted, surrounded by %%<ENCRYPTED>%% and %%</ENCRYPTED>%% tags.  To edit this text, the user needs to press the 'DecryptSecret' button between 'Save' and 'Preview', and supply the correct pass phrase.  The encrypted text will be decrypted to the 'SECRET' form showed above, and the use can edit in plaintext.  Submits or drafts will be encrypted before submission with the same pass phrase supplied. To edit the encrypted data, the user needs to Edit the wiki page.  When first loaded, encrypted text will appear encrypted, surrounded by %%<ENCRYPTED>%% and %%</ENCRYPTED>%% tags.  To edit this text, the user needs to press the 'DecryptSecret' button between 'Save' and 'Preview', and supply the correct pass phrase.  The encrypted text will be decrypted to the 'SECRET' form showed above, and the use can edit in plaintext.  Submits or drafts will be encrypted before submission with the same pass phrase supplied.
  
-===== Known Issues / Feature Requests =====+==== Settings ====
  
-  * The password prompt box should be an actual masked password field.+This plugin includes configuration settings.
  
 +  * ''copytoclipboard'' - If set to true, the plugin tries to copy the decrypted value to the clipboard.
 +  * ''hidepasswordoncopytoclipboard'' - If set to true, the decrypted value will not be shown after being copied to the clipboard (see option 'copytoclipboard').
 +
 +===== Known Issues =====
 +
 +  * May not work if the website including plugin control text is being translated into another language.
 +  * Conflicts with Encrypted Passwords plugin (both plugins attempt to parse the <encrypt></encrypt> tag).  --- [[user>Fumigator2|Fumigator2]] //2024-03-12 02:41//
 +
 +===== Feature Requests =====
 +
 +Please use the [[https://github.com/syntaxseed/dokucrypt2/issues|GitHub Issues page]].
  
-===== Releases ===== 
  
-  * 2017-06-25 - Fork the original plugin. Patch it up. Release for most recent DokuWiki version. Cheers!+===== Bugs Please Submit Bugs On GitHub =====
  
 +Please use the [[https://github.com/syntaxseed/dokucrypt2/issues|Issues page on GitHub]].
  
-===== Bugs ===== 
  
-after fresh install:  +==== Patches For Older Versions of DokuWiki ====
-  getInfo() not implemented in action_plugin_dokucrypt2 and /home/voa/htdocs/wiki/lib/plugins//dokucrypt2/plugin.info.txt not found. +
-  Verify you're running the latest version of the plugin. If the problem persists, send a bug report to the author of the dokucrypt2 plugin.+
  
 +[[https://github.com/syntaxseed/dokucrypt2/blob/master/OLDER_VERSIONS.md|Documentation For Old-Version Patches]].
plugin/dokucrypt2.1501619106.txt.gz · Last modified: 2017-08-01 22:25 by 87.178.111.40

Except where otherwise noted, content on this wiki is licensed under the following license: CC Attribution-Share Alike 4.0 International
CC Attribution-Share Alike 4.0 International Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki