Go to file
Tatsuhiro Tsujikawa 7f18494a8c SimpleRandmizer: Fix certain bits generated by getRandomBytes are always 0
This is because in Linux RAND_MAX is 2**31-1 and we used int32_t to
hold random number from random() and got each bytes. This means that
highest bit is always unset. In little endian system, every 4n-th (n
>=0) byte has highest bit is unset. To fix this, we just use lower 2
bytes of random().
2013-09-26 00:41:33 +09:00
deps Add preliminary libtool files for libaria2 2013-04-25 11:38:26 +09:00
doc Merge branch 'patch-2' of https://github.com/ITriskTI/aria2 into ITriskTI-patch-2 2013-09-25 21:33:23 +09:00
examples Fix compile error 2013-06-27 00:20:48 +09:00
lib Removed autogenerated files by automake/autoconf. 2010-11-27 23:31:17 +09:00
m4 Make AX_CXX_COMPILE_STDCXX_11 test for -stdlib=libc++ via std::shared_ptr 2013-08-21 23:19:01 +02:00
po Removed generated aria2.pot 2012-11-29 22:52:14 +09:00
src SimpleRandmizer: Fix certain bits generated by getRandomBytes are always 0 2013-09-26 00:41:33 +09:00
test Provide internal ARC4 implementation 2013-09-24 19:11:26 +02:00
.gitignore Update .gitignore 2013-09-14 21:08:32 +09:00
AUTHORS Add myself to AUTHORS 2013-09-24 19:04:25 +02:00
COPYING
ChangeLog Added empty ChangeLog. 2010-11-28 00:38:58 +09:00
ChangeLog.old Moved ChangeLog to ChangeLog.old and added notice that we no longer 2010-11-28 00:23:20 +09:00
LICENSE.OpenSSL
Makefile.am Require external gettext for --enable-nls 2013-08-24 10:51:21 +02:00
NEWS Update NEWS 2013-09-08 19:29:43 +09:00
README Converted README.asciidoc into README.rst 2012-04-22 23:27:32 +09:00
README.android Update pre compiled build README 2013-05-26 16:17:12 +09:00
README.mingw Update pre compiled build README 2013-05-26 16:17:12 +09:00
README.rst Mention --without-appletls for checksumming 2013-09-25 04:10:19 +02:00
android-config Add -lstdc++ -lsupc++ in configure.ac not in android-config 2012-07-30 21:17:49 +09:00
android-make Merged Android build scripts 2012-06-29 00:51:13 +09:00
android-release cd to the directory where the script exists before creating release 2012-09-02 18:56:31 +09:00
build_osx_release.sh New upstream release 2012-03-14 00:55:32 +09:00
build_test.sh Added build test without libnettle, libgcrypt and openssl. 2012-01-08 00:59:34 +09:00
configure.ac Provide internal ARC4 implementation 2013-09-24 19:11:26 +02:00
import-po Removed PO files from repository 2012-11-28 23:42:08 +09:00
makerelease makerelease: Provide ANDROID_HOME from outside 2013-02-03 00:19:50 +09:00
mingw-build-memo mingw: Added build memo for mingw build 2012-09-02 18:41:10 +09:00
mingw-config Added configure script wrapper for mingw-w64 cross-compiler. 2012-06-27 00:27:14 +09:00
mingw-release cd to the directory where the script exists before creating release 2012-09-02 18:56:31 +09:00
script-helper Added README and release script for mingw build 2012-06-30 00:53:48 +09:00

README

See README.rst