From 9eb99bce5e1a62c5df8758eaf82f6edee61c35b1 Mon Sep 17 00:00:00 2001 From: Quinn Chrzan Date: Thu, 29 May 2014 18:46:06 -0400 Subject: Updating docs for xor_encode removal --- user_guide/libraries/encryption.html | 9 +++------ user_guide/libraries/sessions.html | 4 +++- 2 files changed, 6 insertions(+), 7 deletions(-) (limited to 'user_guide') diff --git a/user_guide/libraries/encryption.html b/user_guide/libraries/encryption.html index cd59a6c30..4331372a3 100644 --- a/user_guide/libraries/encryption.html +++ b/user_guide/libraries/encryption.html @@ -58,11 +58,8 @@ Encryption Class

Encryption Class

-

The Encryption 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 Encryption Class provides two-way data encryption. It is encrypted using +the Mcrypt library. The Encryption Class requires the Mcrypt extension to run.

Setting your Key

@@ -221,4 +218,4 @@ Next Topic:  File Uploading Class - \ No newline at end of file + diff --git a/user_guide/libraries/sessions.html b/user_guide/libraries/sessions.html index 1b7b73ab9..989170a45 100644 --- a/user_guide/libraries/sessions.html +++ b/user_guide/libraries/sessions.html @@ -71,6 +71,8 @@ generates its own session data, offering more flexibility for developers.

Note: Even if you are not using encrypted sessions, you must set an encryption key in your config file which is used to aid in preventing session data manipulation.

+

Note: The Session class relies on the Encryption class, so you must have Mcrypt extension installed

+

Initializing a Session

Sessions will typically run globally with each page load, so the session class must either be @@ -338,4 +340,4 @@ Next Topic:  Trackback Class - \ No newline at end of file + -- cgit v1.2.3-24-g4f1b