Initial Import
diff --git a/system/init/init_encrypt.php b/system/init/init_encrypt.php
new file mode 100644
index 0000000..5eae533
--- /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