https://github.com/ditatompel/php-crypter
This program used to encode or decode data using specific key passphrase with Rijndael 256 bit encryption.
https://github.com/ditatompel/php-crypter
Last synced: about 1 year ago
JSON representation
This program used to encode or decode data using specific key passphrase with Rijndael 256 bit encryption.
- Host: GitHub
- URL: https://github.com/ditatompel/php-crypter
- Owner: ditatompel
- Archived: true
- Created: 2012-06-29T09:39:58.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2012-06-29T09:41:37.000Z (almost 14 years ago)
- Last Synced: 2025-02-24T15:32:35.535Z (over 1 year ago)
- Language: PHP
- Size: 89.8 KB
- Stars: 0
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
PHP Crypter
This program used to encode or decode data using specific key passphrase with
Rijndael 256 bit encryption.
LICENSE :
This program is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License version 2 as published by the Free
Software Foundation. This program is distributed in the hope that it will be
useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
License for more details.
Usage :
set_time_limit(0);
ini_set('memory_limit', '-1'); // use this for large data file
new phpCrypter($argv);
Still very early release, just for fun coding purpose :)