https://github.com/ovr/phalcon-crypt
Faster version of Phalcon\Crypt
https://github.com/ovr/phalcon-crypt
Last synced: 3 months ago
JSON representation
Faster version of Phalcon\Crypt
- Host: GitHub
- URL: https://github.com/ovr/phalcon-crypt
- Owner: ovr
- Created: 2014-01-28T23:53:17.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-01-26T07:48:26.000Z (over 11 years ago)
- Last Synced: 2025-01-13T09:08:36.837Z (5 months ago)
- Language: C
- Size: 93.8 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# phalcon-crypt [](https://travis-ci.org/sjinks/phalcon-crypt)
Faster version of Phalcon\Crypt using native libmcrypt/openssl instead of mcrypt and openssl PHP extensions.
Main features:
* speed;
* lower memory consumption.**Memory Consumption:**
A 10 megabyte string was encrypted with Blowfish in nCFB mode.
* mcrypt:
* memory usage: 20,972,512 bytes
* peak usage: 31,692,832 bytes
* Phalcon\Crypt (1.3.0):
* memory usage: 20,972,672 bytes
* peak usage: 42,179,984 bytes
* phcrypt (Phalcon\Ext\Crypt\MCrypt):
* memory usage: 20,972,520 bytes
* peak usage: 21,208,240 bytes