diff options
author | Andrey Andreev <narf@devilix.net> | 2014-07-07 09:55:53 +0200 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2014-07-07 09:55:53 +0200 |
commit | 5b3fe7c4af5e08e17480b911fbfa8cf0ef6475c0 (patch) | |
tree | 2527178d5f9d28f0dd969b70727a3df8fa0e1717 /user_guide_src/source/libraries/encryption.rst | |
parent | f7bdd80d72dfcc7a0c49cb1c82df88dc1f992b06 (diff) |
Fix a few typos and add a backport (compat) for hex2bin()
Diffstat (limited to 'user_guide_src/source/libraries/encryption.rst')
-rw-r--r-- | user_guide_src/source/libraries/encryption.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/user_guide_src/source/libraries/encryption.rst b/user_guide_src/source/libraries/encryption.rst index 5d92b109a..f29ebf4ed 100644 --- a/user_guide_src/source/libraries/encryption.rst +++ b/user_guide_src/source/libraries/encryption.rst @@ -5,13 +5,13 @@ Encryption Library The Encryption Library provides two-way data encryption. To do so in a cryptographically secure way, it utilizes PHP extensions that are unfortunately not always available on all systems. -You must meet one of the following dependancies in order to use this +You must meet one of the following dependencies in order to use this library: - `OpenSSL <http://php.net/openssl>`_ (and PHP 5.3.3) - `MCrypt <http://php.net/mcrypt>`_ (and `MCRYPT_DEV_URANDOM` availability) -If neither of the above dependancies is met, we simply cannot offer +If neither of the above dependencies is met, we simply cannot offer you a good enough implementation to meet the high standards required for proper cryptography. |