summaryrefslogtreecommitdiffstats
path: root/user_guide
diff options
context:
space:
mode:
authoradmin <devnull@localhost>2006-10-12 20:20:13 +0200
committeradmin <devnull@localhost>2006-10-12 20:20:13 +0200
commit9fa003797d794a63aa58356926fac9649269c668 (patch)
tree513ad753d4d62bb21cbc93a09e48adb961da0d98 /user_guide
parent572ed815e69fdd79bfc9cad63afcd370a4eba0aa (diff)
Diffstat (limited to 'user_guide')
-rw-r--r--user_guide/libraries/encryption.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/user_guide/libraries/encryption.html b/user_guide/libraries/encryption.html
index df5c6eb60..3a774e2c7 100644
--- a/user_guide/libraries/encryption.html
+++ b/user_guide/libraries/encryption.html
@@ -138,11 +138,11 @@ $encrypted_string = 'APANtByIGI1BpVXZTJgcsAG8GZl8pdwwa84';<br />
$plaintext_string = $this->encrypt->decode($encrypted_string);</code>
-<h2>$this->encrypt->set_cypher();</h2>
+<h2>$this->encrypt->set_cipher();</h2>
-<p>Permits you to set an Mcrypt cypher. By default it uses <samp>MCRYPT_RIJNDAEL_256</samp>. Example:
-<code>$this->encrypt->set_cypher('MCRYPT_BLOWFISH');</code>
-<p>Please visit php.net for a list of <a href="http://php.net/mcrypt">available cyphers</a>.</p>
+<p>Permits you to set an Mcrypt cipher. By default it uses <samp>MCRYPT_RIJNDAEL_256</samp>. Example:
+<code>$this->encrypt->set_cipher('MCRYPT_BLOWFISH');</code>
+<p>Please visit php.net for a list of <a href="http://php.net/mcrypt">available ciphers</a>.</p>
<p>If you'd like to manually test whether your server supports Mcrypt you can use:</p>
<code>echo ( ! function_exists('mcrypt_encrypt')) ? 'Nope' : 'Yup';</code>