summaryrefslogtreecommitdiff
path: root/ext/mhash
Commit message (Collapse)AuthorAgeFilesLines
* Use {NULL, NULL, NULL} to terminate function entry.Yasuo Ohgaki2002-02-281-5/+5
| | | | | # It does not fix any bugs, since {0} works also.
* Maintain headers.Sebastian Bergmann2002-02-281-3/+1
|
* Update headers.Sebastian Bergmann2001-12-111-2/+2
|
* Unified the configure messages.foobar2001-11-301-4/+3
|
* * zend_module_entry change: apino, debug and zts are moved first,Stig Bakken2001-10-111-0/+2
| | | | | | see README.EXTENSIONS file for upgrade help. @Introduced extension version numbers (Stig)
* - Don't wrap lines... this is annoying while coding.Derick Rethans2001-09-091-2/+2
|
* killed a compile warning.foobar2001-08-221-1/+0
|
* Track down a few more functions that don't check for 0 args and useRasmus Lerdorf2001-08-131-2/+3
| | | | | faster mechanism
* We don't consistently check for args passed to functions that don'tRasmus Lerdorf2001-08-131-0/+3
| | | | | | | | | take any args. In some cases we probably want to skip the check for performance reasons, but in other cases where performance is unlikely to be a factor, not throwing a warning on the wrong number of args passed to a function is at best inconsistent, and at worst it could hide a bug. So, add a few such checks. There are still lots of cases out there.
* - Get rid of ELS_*(), and use TSRMLS_*() instead.Zeev Suraski2001-07-271-1/+1
| | | | | | | - Move to the new ts_allocate_id() API This patch is *bound* to break some files, as I must have had typos somewhere. If you use any uncommon extension, please try to build it...
* mhash_keygen_s2k() overwrote the limits of a statically allocated bufferSascha Schumann2001-07-011-3/+4
| | | | | | | for long salts. We truncate the salt now appropiately. PR: #11817
* Fix folding and clean up some extensionsRasmus Lerdorf2001-06-061-2/+9
|
* * include "config.h" if HAVE_CONFIG_H is defined (for standalone dso build)Stig Bakken2001-05-241-0/+4
|
* Renamed the AC_ prefixed macros defined in acinclude.m4 to PHP_* prefixes.foobar2001-03-271-2/+2
| | | | | # Heads up people! I tested this before committing but you never know..
* - Finally rename modules.h to zend_modules.h for consistency (first tryAndi Gutmans2001-02-261-1/+1
| | | | | | | was 2000-03-11). - Remove the first_arg_force_ref[]; and friends extern from php.h as they are included via zend_API.h
* - Fix copyright notices with 2001Andi Gutmans2001-02-261-1/+1
|
* Some protos fixed.Egon Schmid2001-01-151-7/+7
|
* Avoid estrdup and a couple of other minor cleanupsSascha Schumann2000-11-221-9/+6
|
* Run through conv_z_macrosSascha Schumann2000-11-221-15/+15
|
* 2nd step towards auto-creditsHartmut Holzgraefe2000-11-201-0/+2
|
* Added keygen_s2k function. Function which generates keys from passwords.Nikos Mavroyanopoulos2000-10-252-1/+78
|
* corrected authors noticeNikos Mavroyanopoulos2000-10-181-1/+2
|
* Added the mhash HMAC functionality. Now the mhash function can useNikos Mavroyanopoulos2000-10-171-24/+65
| | | | | keyed hash by added the key as an extra parameter to the function.
* cleanupDaniel Beulshausen2000-09-301-1/+1
|
* dsp for mhashDaniel Beulshausen2000-08-301-0/+115
| | | | | # guess i'll have to add some readme's soon...
* - ARG_COUNT(ht) -> ZEND_NUM_ARGS() mega patchAndi Gutmans2000-06-051-3/+3
|
* protos fixedHartmut Holzgraefe2000-05-261-4/+8
|
* protos where lacking return typesHartmut Holzgraefe2000-05-231-4/+4
|
* Update the license with the new clause 6Zeev Suraski2000-05-181-2/+2
|
* Use the new AC_ADD_LIBRARY_WITH_PATH option shared-libaddSascha Schumann2000-05-021-6/+2
|
* Make mhash builable as shared moduleSascha Schumann2000-05-023-2/+13
|
* Remove trailing empty linesSascha Schumann2000-05-011-4/+0
|
* Large test commit IVSascha Schumann2000-05-011-0/+1
|
* Large commit test IIISascha Schumann2000-05-011-0/+3
|
* Improved in-tree shared libraries build systemSascha Schumann2000-05-011-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The following new/revived shared modules are available now: ... MySQL (*) ... PCRE (*) ... Session ... SWF (*) capable of using bundled library or external library All changes: The m4 macro PHP_EXTENSION was revamped. Uses LIB_BUILD now. This effectively means that all extensions have to use dynlib. ext/mysql/config.m4 was revamped. Uses LIB_BUILD for building bundled library. ext/pcre/config.m4 was revamped. Uses LIB_BUILD for building bundled library. ext/ext_skel was changed to reflect that more modules should be compileable as shared module. ext/Makefile.in has been simplified enormously. Dependencies are now stored in the build tree. Empty dependencies are not generated by buildconf anymore. They are now dynamically created during the build process. Implicit rules for .S were removed. The NO_RECURSION feature was removed. "libs.mk" has been added to all cvsignore files in ext.
* Overall UNIX build system improvements:Sascha Schumann2000-04-301-6/+1
| | | | | | | | | * Makefile header is now completely dynamic * Absolute paths in (top_)?(src|build)dir and VPATH (fixes Tru64 support) * VPATH does not contain variables anymore (fixes UnixWare support)
* Use PHP_ARG_WITHSascha Schumann2000-03-271-23/+17
|
* - Oops I commited a name change for consistency of Zend/modules.h toAndi Gutmans2000-03-111-1/+1
| | | | | Zend/zend_modules.h before it being finished. Revert it
* - Don't define DEBUG anymore. Everyone should use PHP_DEBUG.Andi Gutmans2000-03-111-1/+1
| | | | | | | | There are 2-3 third-party libs in PHP which use DEBUG and I left them this way (primary example is pcrelib). - Please test things and Andrei, can you check that pcrelib stopped printing the warning messages?
* It didn't all go throughZeev 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).
* Whoops, defining them to empty values generates many parse errors.Sascha Schumann1999-12-301-1/+1
| | | | | Defaulting to 1.
* Get rid of config.h.stub. Note that you should embed a comment aboutSascha Schumann1999-12-302-3/+1
| | | | | | | what the respective define does into the AC_DEFINE macro. I.e. AC_DEFINE(HAVE_FOO, 1, [Whether you have FOO])
* Integration of -ng changes. Changes:Sascha Schumann1999-12-302-5/+10
| | | | | | | | | | | | - added support for externally built modules, - improved support for in-tree shared modules, - fixed diversion bugs, - configure displays some informative messages, - faster static build (libtool isn't used anymore for compiling non-PIC objects), - dependencies comparable to automake's without requiring GNU make or GCC, - working make clean for non-GNU makes.
* - The tree compiles againZeev Suraski1999-12-181-3/+3
|
* - Made PHP_VERSION and PHP_OS work againZeev Suraski1999-12-171-1/+1
| | | | | | - More php3_ cleanup @- Restored the PHP_VERSION and PHP_OS constants (Zeev)
* Add/update copyright headersSascha Schumann1999-11-261-1/+1
|
* (php_minit_mhash): Don't use REGISTER_LONG_CONSTANT macro, because weSascha Schumann1999-11-151-1/+1
| | | | | don't have a fixed size array of chars (this used to work nevertheless).
* (PHP mhash): don't segfault, if mhash_end() returns NULLSascha Schumann1999-11-141-2/+6
|
* Remove the extra INCLUDES line from most automake Mafiles. This is notSascha Schumann1999-11-131-1/+0
| | | | | | | | | necessary, because we can change the value of INCLUDES globally in one place (configure.in). Also add two defines in thread-safe mode (_REENTRANT and POSIX_PTHREAD_SEMANTICS)