From 10c3f41cbe5bd3bb66fd106cc9fb171ffcc7364b Mon Sep 17 00:00:00 2001 From: admin Date: Sun, 8 Oct 2006 07:21:12 +0000 Subject: --- user_guide/libraries/encryption.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'user_guide/libraries/encryption.html') diff --git a/user_guide/libraries/encryption.html b/user_guide/libraries/encryption.html index a8c047535..9be32cf4f 100644 --- a/user_guide/libraries/encryption.html +++ b/user_guide/libraries/encryption.html @@ -33,7 +33,7 @@ window.onload = function() {
- +

Code Igniter User Guide Version 1.5.0

Code Igniter User Guide Version 1.5.0b1

@@ -47,7 +47,7 @@ window.onload = function() { Code Igniter Home  ›  User Guide Home  ›  -Encrypt Class +Encryption Class
Search User Guide   
@@ -61,9 +61,9 @@ Encrypt Class
-

Encrypt Class

+

Encryption Class

-

The Encrypt Class provides two-way data encryption. It uses a scheme that pre-compiles +

The Encryption Class provides two-way data encryption. It uses a scheme that pre-compiles the message using a randomly hashed bitwise XOR encoding scheme, which is then 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. @@ -105,7 +105,7 @@ for example, can only hold 4K of information.

Initializing the Class

-

Like most other classes in Code Igniter, the Encrypt class is initialized in your controller using the $this->load->library function:

+

Like most other classes in Code Igniter, the Encryption class is initialized in your controller using the $this->load->library function:

$this->load->library('encrypt');

Once loaded, the Encrypt library object will be available using: $this->encrypt

-- cgit v1.2.3-24-g4f1b