Documentation

DES.php

Pure-PHP implementation of DES.

Uses mcrypt, if available, and an internal implementation, otherwise.

PHP version 5

Useful resources are as follows:

Here's a short example of how to use this library:

setKey('abcdefgh'); $size = 10 * 1024; $plaintext = ''; for ($i = 0; $i < $size; $i++) { $plaintext.= 'a'; } echo $des->decrypt($des->encrypt($plaintext)); ?>
Tags
category

Crypt

author

Jim Wigginton terrafrost@php.net

copyright

2007 Jim Wigginton

license

http://www.opensource.org/licenses/mit-license.html MIT License

link
http://phpseclib.sourceforge.net

Table of Contents

Classes

DES
Pure-PHP implementation of DES.

        
On this page

Search results