summaryrefslogtreecommitdiff
path: root/Modules/binascii.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #29004: Document binascii.crc_hqx() implements CRC-CCITTMartin Panter2016-12-241-1/+1
* Issue #28139: Fix messed up indentationMartin Panter2016-09-171-1/+1
* Issue #27599: Fixed buffer overrun in binascii.b2a_qp() and binascii.a2b_qp().Serhiy Storchaka2016-09-141-5/+7
* fix possible integer overflow in binascii.b2a_qp (closes #27760)Benjamin Peterson2016-08-131-9/+16
* Issue #20434 Correct error handlin of _PyString_Resize and _PyBytes_ResizeKristján Valur Jónsson2014-04-251-35/+20
* Remove all other uses of the C tolower()/toupper() which could break with a T...Antoine Pitrou2011-10-041-2/+2
* Untabify C files. Will watch buildbots.Antoine Pitrou2010-05-091-1131/+1131
* Followup to #7703: a2b_hqx() didn't follow the new buffer API (neither in trunkAntoine Pitrou2010-01-161-3/+14
* Issue #7701: Fix crash in binascii.b2a_uu() in debug mode when given aAntoine Pitrou2010-01-151-1/+1
* Issue #7703: Add support for the new buffer API to functions of theAntoine Pitrou2010-01-141-70/+189
* Merge in release25-maint r60793:Gregory P. Smith2008-06-111-3/+39
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-091-42/+42
* Renamed PyString to PyBytesChristian Heimes2008-05-261-42/+42
* On platforms without zlib, make this do the right thing and return the pythonGregory P. Smith2008-03-251-71/+58
* Use a 32-bit unsigned int here, a long is not needed.Gregory P. Smith2008-03-251-2/+2
* Have the binascii module use zlib's optimized crc32() function when availableGregory P. Smith2008-03-241-0/+24
* Add a test to make sure zlib.crc32 and binascii.crc32 return the same thing.Gregory P. Smith2008-03-181-1/+1
* Backport checkin:Walter Dörwald2007-05-091-1/+1
* Patch #1185447: binascii.b2a_qp() now correctly quotes binary charactersGeorg Brandl2007-03-131-4/+8
* Bug #1588217: don't parse "= " as a soft line break in binascii'sGeorg Brandl2006-11-161-2/+1
* Make binascii.hexlify() use s# for its arguments instead of t# to actuallyBrett Cannon2006-06-081-1/+1
* Correct some value converting strangenesses.Georg Brandl2006-05-291-1/+1
* Use Py_ssize_t for arithmetic on Py_ssize_t's, instead of unsigned ints.Thomas Wouters2006-03-011-2/+2
* Fix brainfart.Thomas Wouters2006-03-011-1/+1
* Make Py_ssize_t-clean.Thomas Wouters2006-03-011-17/+18
* Revert backwards-incompatible const changes.Martin v. Löwis2006-02-271-2/+2
* Check return result from Py_InitModule*(). This API can fail.Neal Norwitz2006-01-191-0/+2
* Add const to several API functions that take char *.Jeremy Hylton2005-12-101-2/+3
* Remove redunandant assertions from last checkin.Raymond Hettinger2004-09-061-9/+0
* SF #1022953: binascii.a2b_hqx("") raises SystemErrorRaymond Hettinger2004-09-061-5/+16
* Switch arguments to memset (kudos to MSVC C4318 for finding that)Martin v. Löwis2004-07-271-2/+2
* Valgrind was reporting an uninitialized read for bad input.Neal Norwitz2004-06-061-1/+2
* In order to fix SF bug # 824977, we replace calloc()/free() calls inBarry Warsaw2004-05-111-9/+16
* binascii_a2b_base64: Properly return an empty string if the input was allThomas Wouters2003-03-171-1/+8
* base64.decodestring('') should return '' instead of raising anBarry Warsaw2002-08-151-5/+2
* Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototypeMark Hammond2002-08-021-1/+1
* Another stab at SF 576327: zipfile when sizeof(long) == 8Tim Peters2002-07-021-100/+106
* Fix for SF bug #576327: zipfile when sizeof(long) == 8Tim Peters2002-07-021-1/+11
* Patch #568124: Add doc string macros.Martin v. Löwis2002-06-131-20/+20
* SF bug #494738: binascii_b2a_base64 overwrites memory.Tim Peters2001-12-191-3/+5
* Change the limit on the input size for b2a_base64 to what will fit inGuido van Rossum2001-10-301-1/+3
* Add various typecasts (back and forth from char * to unsigned char *)Greg Ward2001-10-041-5/+5
* Patch #462190, patch #464070: Support quoted printable in the binascii module.Martin v. Löwis2001-09-301-0/+296
* This closes bug #430849 (internal error produced by binascii.a2b_base64)Peter Schneider-Kamp2001-06-071-0/+4
* Address a bug in the uuencode decoder, reported bu "donut" in SF bugGuido van Rossum2001-01-091-3/+3
* REMOVED all CWI, CNRI and BeOpen copyright markings.Guido van Rossum2000-09-011-16/+0
* Fix new compiler warnings. Unused var in compile.c. Argsize mismatchesTim Peters2000-08-151-1/+1
* binascii_unhexlify(): Better error message, courtesy effbot.Barry Warsaw2000-08-151-5/+5
* After a brief conversation and code review with TP, adding two veryBarry Warsaw2000-08-151-22/+126
* Use METH_VARARGS instead of numeric constant 1 in method def. tablesAndrew M. Kuchling2000-08-031-13/+20