summaryrefslogtreecommitdiff
path: root/inc/load.php
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2013-07-31 11:07:32 -0700
committerAndreas Gohr <andi@splitbrain.org>2013-07-31 11:07:32 -0700
commit96e3411f2e5895f9aa3eff5db58f0ed3e6183471 (patch)
treeb55b5905c1a10e97519bf7768f48fcdb2e7e2503 /inc/load.php
parent07ff0babae240ba072a3bc8b83a989c4305c24cd (diff)
parent7b650cef79bb603087a8ef43b22a1f7c3d86b7ef (diff)
downloadrpg-96e3411f2e5895f9aa3eff5db58f0ed3e6183471.tar.gz
rpg-96e3411f2e5895f9aa3eff5db58f0ed3e6183471.tar.bz2
Merge pull request #242 from splitbrain/aes_prng
Add AES encryption and better random numbers FS#2685
Diffstat (limited to 'inc/load.php')
-rw-r--r--inc/load.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/inc/load.php b/inc/load.php
index 5ca9b4cd8..7fb328215 100644
--- a/inc/load.php
+++ b/inc/load.php
@@ -82,6 +82,10 @@ function load_autoload($name){
'RemoteAPI' => DOKU_INC.'inc/remote.php',
'RemoteAPICore' => DOKU_INC.'inc/RemoteAPICore.php',
'Subscription' => DOKU_INC.'inc/subscription.php',
+ 'Crypt_Base' => DOKU_INC.'inc/phpseclib/Crypt_Base.php',
+ 'Crypt_Rijndael' => DOKU_INC.'inc/phpseclib/Crypt_Rijndael.php',
+ 'Crypt_AES' => DOKU_INC.'inc/phpseclib/Crypt_AES.php',
+ 'Crypt_Hash' => DOKU_INC.'inc/phpseclib/Crypt_Hash.php',
'DokuWiki_Action_Plugin' => DOKU_PLUGIN.'action.php',
'DokuWiki_Admin_Plugin' => DOKU_PLUGIN.'admin.php',