summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Version bump because of failed dgit upload.HEADdebian/1.21-2masterTristan Seligmann2015-08-07
|
* Update changelog for release.debian/1.21-1Tristan Seligmann2015-08-07
|
* Fix quilt stuff for real.Tristan Seligmann2015-08-07
|
* New upstream release.Tristan Seligmann2015-08-07
|
* Merge tag 'v1.21' into dgit/sidTristan Seligmann2015-08-07
|\ | | | | | | Tag version 1.21
| * Fix possible (API misuse) null pointer reported by Coverity.Technion2015-07-09
| |
| * Now utilising Facebook "infer".Technion2015-07-09
| | | | | | | | Strict c99 adherence requires stddefs.h for size_t.
| * More fully document header length.Technion2015-07-09
| |
| * Memory sanitize is still beta - remove it.Technion2015-07-09
| |
| * Fix for #38 - snprintf() return value check to match man page.Technion2015-07-09
| | | | | | | | | | Many thanks to kinnison for reporting this bug. This bug should not have a practical impact as a properly sized buffer will not overflow. It is nonetheless important to be accurate in these types of checks.
| * Consistent bracket styleTechnion2015-04-10
| |
| * Tests and documentaiton regarding #35.Technion2015-01-04
| |
| * Revert #23Technion2015-01-04
| |
| * Note on Windows support.Technion2014-12-21
| |
| * ASAN test framework. No bugs found when running it.Technion2014-12-05
| |
| * b64.o isn't needed to be listed independantly in MakefileTechnion2014-12-05
| |
* | Update debian/watch to point to Github.Tristan Seligmann2015-08-07
| |
* | Fix quilt stuff.Tristan Seligmann2015-08-07
| |
* | Commit removal of .pc (quilt series tracking data)Tristan Seligmann2015-08-07
| |
* | Update changelog for unstable.debian/1.20-2Tristan Seligmann2015-05-01
| |
* | Merge branch 'dgit/experimental' into dgit/sidTristan Seligmann2015-05-01
|\ \
| * | Fix Vcs-Browse URI.Tristan Seligmann2014-12-24
| | |
| * | Huh.debian/1.20-1Tristan Seligmann2014-12-14
| | |
| * | Fix warning flag.Tristan Seligmann2014-12-14
| | |
| * | Commit Debian 3.0 (quilt) metadataTristan Seligmann2014-12-14
| | |
| * | Handle Makefile differently.Tristan Seligmann2014-12-14
| | |
| * | Update changelog for release.Tristan Seligmann2014-12-14
| | |
| * | Update copyright file.Tristan Seligmann2014-12-14
| | |
| * | Update Vcs-* fields.Tristan Seligmann2014-12-14
| | |
| * | Tweak -dev package description.Tristan Seligmann2014-12-14
| | |
| * | Add a symbols file.Tristan Seligmann2014-12-14
| | |
| * | Bump Standards-Version.Tristan Seligmann2014-12-14
| | |
| * | Remove some cruft.Tristan Seligmann2014-12-14
| | |
| * | Work around changes in upstream Makefile.Tristan Seligmann2014-12-14
| | |
| * | Low priority, not that it matters.Tristan Seligmann2014-12-14
| | |
| * | New upstream release.Tristan Seligmann2014-12-14
| | | | | | | | | | | | - Add myself as co-maintainer.
| * | Merge tag 'v1.20' into dgit/experimentalTristan Seligmann2014-12-14
| |\|
| | * Version 1.20 bumpTechnion2014-12-01
| | |
| | * Much more effecient N calculation, and now handles N > 15 (althought you ↵Technion2014-12-01
| | | | | | | | | | | | | | | | | | wouldn't want to with today's computers). Credit to Achim Stahlberger <achim.stahlberger@fun.de>.
| | * Because of commit 7cd8a4fa3, libscrypt_scrypt can return EINVAL, which is ↵Technion2014-12-01
| | | | | | | | | | | | | | | | | | 22. Passing this from libscrypt_check incorrectly returns a failure as a success. Reported by Achim Stahlberger.
| | * Merge pull request #31 from glyph/osx-linkingtechnion2014-11-28
| | |\ | | | | | | | | use install_name_tool to change the library name so that executables linked against it can find it without help from DYLD_LIBRARY_PATH
| | | * Use install_name_tool to name the installed dylib.Glyph2014-11-28
| | |/
| | * Fixed #28.Technion2014-11-06
| | |
| | * Merge pull request #28 from Convey-Compliance/mastertechnion2014-09-21
| | |\ | | | | | | | | Minimal changes to allow compilation in Visual Studio
| | | * B-0 restored back to original stateJose Sebastian Battig2014-09-16
| | | |
| | | * B-0 modifications made to allow compilation in Visual StudioJose Sebastian Battig2014-09-16
| | |/
| | * Merge pull request #27 from nmathewson/mingw-porttechnion2014-08-29
| | |\ | | | | | | | | Compile correctly under mingw32, mingw64
| | | * Use strtok() on Windows.Nick Mathewson2014-08-28
| | | | | | | | | | | | | | | | | | | | See the MSDN documentation for strtok(): They don't provide a strtok_r, but they do have a thread-safe strtok().
| | | * Don't include sys/mman.h on WindowsNick Mathewson2014-08-28
| | | | | | | | | | | | | | | | The header doesn't exist; instead, just fall back to malloc.
| | | * Use 'unsigned char', not 'u_char'Nick Mathewson2014-08-28
| | |/ | | | | | | | | | Fixes mingw compilation for b64.c