summaryrefslogtreecommitdiffstats
path: root/user_guide_src/source
diff options
context:
space:
mode:
authorAndrey Andreev <narf@devilix.net>2014-05-31 20:18:17 +0200
committerAndrey Andreev <narf@devilix.net>2014-05-31 20:18:17 +0200
commit6eb77da2db93af893955b320a768054e9519dc81 (patch)
tree7ab56295fa82bbecdc010f95819102032f6fec27 /user_guide_src/source
parentf411e9cc5bb04248aa412214e780d3af24d0da3d (diff)
Remove CI_Encrypt::_xor_encode()
Diffstat (limited to 'user_guide_src/source')
-rw-r--r--user_guide_src/source/libraries/encrypt.rst9
1 files changed, 2 insertions, 7 deletions
diff --git a/user_guide_src/source/libraries/encrypt.rst b/user_guide_src/source/libraries/encrypt.rst
index faff39975..6b65099a6 100644
--- a/user_guide_src/source/libraries/encrypt.rst
+++ b/user_guide_src/source/libraries/encrypt.rst
@@ -2,13 +2,8 @@
Encrypt Class
#############
-The Encrypt Class provides two-way data encryption. It uses a scheme
-that either compiles the message using a randomly hashed bitwise XOR
-encoding scheme, or is encrypted using the Mcrypt library. If Mcrypt is
-not available on your server the encoded message will still provide a
-reasonable degree of security for encrypted sessions or other such
-"light" purposes. If Mcrypt is available, you'll be provided with a high
-degree of security appropriate for storage.
+The Encrypt Class provides two-way data encryption. It encrypted using
+the Mcrypt PHP extension, which is required for the Encrypt Class to run.
.. important:: This library has been DEPRECATED and is only kept for
backwards compatibility. Please use the new :doc:`Encryption Library