Deskripsyon
Enscrypt replaces wordpress authentication protocols with a mechanism that uses the far more secure scrypt hashing algorithm.
Scrypt is a superior hashing algorithm with configurable CPU and memory parameters. As such, when properly configured, it takes long enough and is secure enough to be highly resistant to brute-force attacks.
Enscrypt can be enabled and disabled at-will without interfering with the built-in WordPress authentication mechanism.
Pag-install
Outside of having an appropriate WordPress version, the only necessary dependency to use Enscrypt is to install the scrypt PECL extension for PHP.
Assuming you’re using Ubuntu Linux and already have the pecl PHP package manager installed, perform the following as root:
- Install the scrypt package by running:
pecl install scrypt - Create the module file for PHP by running:
echo "extension=scrypt.so" > /etc/php5/mods-available/scrypt.ini - Enable the module by running:
php5enmod -s ALL scrypt
If you are using another operating system, you will need to adjust these instructions to accomplish the same result for your OS. If you do not have pecl installed, refer to this answer: http://askubuntu.com/questions/403327/install-pecl-packages-on-ubuntu#answer-403348
Mga Review
Wala pang reviews para sa plugin na ito.
Mga Contributor at Developer
Ang “Enscrypt” ay open source software. Ang mga sumusunod na tao ay nag-ambag sa plugin na ito.
Mga ContributorIsalin ang “Enscrypt” sa iyong wika.
Interesado sa development?
Tingnan ang code, i-check ang SVN repository, o mag-subscribe sa development log sa pamamagitan ng RSS.
Changelog
1.0
- Basic functional implementation of Enscrypt working and tested on single site WordPress.