summaryrefslogtreecommitdiff
path: root/ext/standard/md5.c
Commit message (Collapse)AuthorAgeFilesLines
* Maintain headers.Sebastian Bergmann2002-02-281-1/+1
|
* Update headers.Sebastian Bergmann2001-12-111-2/+2
|
* proto fixHartmut Holzgraefe2001-12-061-1/+1
|
* Make php_MD5* functions available from shared extensionsFrank M. Kromann2001-12-031-4/+4
|
* - Added md5_file(), which calculaties the MD5 sum of a file.Derick Rethans2001-11-181-6/+66
| | | | | | | (patch by: Alessandro Astarita <aleast@capri.it>) (Derick) @- Added md5_file(), which calculaties the MD5 sum of a file. @ (patch by: Alessandro Astarita <aleast@capri.it>) (Derick)
* Back-substitute for Z_* macro's. If it breaks some extension (the script ↵Jeroen van Wolffelaar2001-09-251-1/+1
| | | | isn't optimal, it parses for example var->zval.value incorrect) please let me know.
* - Don't wrap lines... this is annoying while coding.Derick Rethans2001-09-091-2/+2
|
* WhitespaceZeev Suraski2001-08-111-1/+1
|
* Fix folding and clean up some extensionsRasmus Lerdorf2001-06-061-7/+20
|
* vim-6 does folding - clean up a bunch of missing folding tags plusRasmus Lerdorf2001-06-051-0/+1
| | | | | some misguided RINIT and RSHUTDOWN calls in a few fringe extensions
* - Fix copyright notices with 2001Andi Gutmans2001-02-261-1/+1
|
* Get rid of php_global.h and the associated data types UINT4/_POINTER.Sascha Schumann2000-08-211-55/+24
| | | | | | | We use php_uint32 now globally. Also removed K&R support from md5.[ch].
* Changed lots of PHP 3 licence headers to PHP 4, mainly in .h files.David Croft2000-07-241-1/+3
| | | | | | | | | Added a few RCS $Id$ tags. # Note: I have avoided changing any .h files if the corresponding .c file # had not already been changed as I am not sure if there are any legal # issues here. So some extensions still have PHP 3 headers.
* - ARG_COUNT(ht) -> ZEND_NUM_ARGS() mega patchAndi Gutmans2000-06-051-1/+1
|
* Update the license with the new clause 6Zeev Suraski2000-05-181-2/+2
|
* - Convert 'PHP3' to 'PHP'Zeev Suraski2000-02-261-9/+9
| | | | | - Avoid declaring crypt() related salt types twice
* the pipe is breaking all the timeZeev Suraski2000-02-191-2/+2
|
* Happy Y2K patch! Happy new year (or the new millennium, depending on whetherSascha Schumann2000-01-011-1/+1
| | | | | you start counting at 0 or 1).
* - The tree compiles againZeev Suraski1999-12-181-1/+1
|
* More work on php3_ annihilation...Zeev Suraski1999-12-171-1/+1
|
* Use new Zend API.Sascha Schumann1999-09-241-4/+4
|
* License updateZeev Suraski1999-07-161-20/+9
|
* conv_proto *.[ch]Sascha Schumann1999-05-161-1/+1
|
* A lot of cleanups... Removed old thread-safe code and other redundant code ↵Zeev Suraski1999-04-241-1/+0
| | | | and files
* Remove tls.[ch]Zeev Suraski1999-04-231-3/+0
|
* First commit of re-structuring phase one. We have started using automake inStig Bakken1999-04-171-0/+407
sub-directories and started to move extension code into ext/<name>. For now, I have moved the "standard" extension (which is quite a mix of everything right now) and the GD extension into their own subdirs in ext/. The configure script now also runs configure in the libzend directory automatically and makes sure php4 and libzend use the same config.cache file. To avoid running configure in libzend, use the --no-recursion option. "make" in php4 also builds libzend now. The Apache module doesn't compile right now, but a fix for that is coming up.