summaryrefslogtreecommitdiffstats
path: root/system/init/init_encrypt.php
diff options
context:
space:
mode:
Diffstat (limited to 'system/init/init_encrypt.php')
-rw-r--r--system/init/init_encrypt.php18
1 files changed, 18 insertions, 0 deletions
diff --git a/system/init/init_encrypt.php b/system/init/init_encrypt.php
new file mode 100644
index 000000000..5eae533ba
--- /dev/null
+++ b/system/init/init_encrypt.php
@@ -0,0 +1,18 @@
+<?php if (!defined('BASEPATH')) exit('No direct script access allowed');
+
+/**
+ * Loads and instantiates encryption class
+ *
+ * @access private called by the app controller
+ */
+
+if ( ! class_exists('CI_Encrypt'))
+{
+ require_once(BASEPATH.'libraries/Encrypt'.EXT);
+}
+
+$obj =& get_instance();
+$obj->encrypt = new CI_Encrypt();
+$obj->ci_is_loaded[] = 'encrypt';
+
+?> \ No newline at end of file