Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Send Travis notifications to botan-commits mailing list | Jack Lloyd | 2015-07-17 | 1 | -1/+1 |
| | |||||
* | Merge pull request #203 from tiwoc/android | Simon Warta | 2015-07-17 | 23 | -6/+34 |
|\ | | | | | Android support | ||||
| * | Add Android OS | Daniel Seither | 2015-07-17 | 11 | -0/+21 |
| | | | | | | | | | | | | The android.txt is a copy of linux.txt minus the getsid feature (Android's libc, Bionic, doesn't support it) and the alias linux-gnu. It is supported anywhere where linux is supported. | ||||
| * | Add OS feature getsid | Daniel Seither | 2015-07-17 | 12 | -0/+13 |
| | | | | | | | | | | It is added to all OS that use getsid currently, so it must be available there. | ||||
| * | Remove references to removed tru64 OS | Daniel Seither | 2015-07-17 | 6 | -6/+0 |
|/ | | | | There's no OS file in src/build-data/os for tru64 | ||||
* | Merge pull request #204 from webmaster128/read-crt-as-binary | Simon Warta | 2015-07-17 | 1 | -1/+1 |
|\ | | | | | Read .crt files in tests as binary files | ||||
| * | Read .crt files in tests as binary files | Simon Warta | 2015-07-17 | 1 | -1/+1 |
|/ | |||||
* | Merge pull request #201 from webmaster128/fs | Simon Warta | 2015-07-16 | 9 | -120/+185 |
|\ | | | | | Refactor internal/filesystem.h | ||||
| * | Add MSVC stl filesystem implementation | Simon Warta | 2015-07-16 | 3 | -3/+32 |
| | | | | | | | | Closes #199 | ||||
| * | Refactor internal/filesystem.h | Simon Warta | 2015-07-16 | 7 | -56/+92 |
|/ | | | | Closes #198 | ||||
* | Add missing include <string> in calendar.h | Simon Warta | 2015-07-16 | 1 | -0/+1 |
| | |||||
* | Merge pull request #200 from webmaster128/time-test | Simon Warta | 2015-07-16 | 4 | -31/+87 |
|\ | | | | | Add date calendar_point to timepoint test of year 2100 | ||||
| * | Fix time range issue for 32 bit platforms | Simon Warta | 2015-07-16 | 4 | -31/+87 |
|/ | |||||
* | Describe release schedule for 1.11 | Jack Lloyd | 2015-07-16 | 1 | -0/+2 |
| | |||||
* | Merge pull request #197 from webmaster128/documentation | Simon Warta | 2015-07-15 | 2 | -30/+25 |
|\ | | | | | Documentation | ||||
| * | Update building documentation | Simon Warta | 2015-07-15 | 1 | -26/+24 |
| | | | | | | | | [ci skip] | ||||
| * | Use slim Kullo CI badge | Simon Warta | 2015-07-15 | 1 | -4/+1 |
|/ | | | | [ci skip] | ||||
* | Merge pull request #196 from tiwoc/force-semicolons | Simon Warta | 2015-07-15 | 4 | -7/+13 |
|\ | | | | | Force semicolons at the end of BOTAN_REGISTER_* macro invocations | ||||
| * | Remove semicolons at the end of macros | Daniel Seither | 2015-07-15 | 1 | -3/+3 |
| | | |||||
| * | Add missing semicolons | Daniel Seither | 2015-07-15 | 2 | -2/+2 |
| | | |||||
| * | Force semicolons at the end of BOTAN_REGISTER_* macro invocations | Daniel Seither | 2015-07-15 | 1 | -2/+8 |
|/ | | | | | | | | | | | | | | All BOTAN_REGISTER_* macros are defined as namespace { some_command(); } So, if such a macro is used with a semicolon at the end, we have `namespace { ... };` which is unnecessary and makes gcc complain when run with with -Wpedantic. However, for consistency, it is great to end those macro invocations with a semicolon. This commit forces semicolons by appending a dummy definition with the necessary semicolon missing. | ||||
* | Merge pull request #179 from webmaster128/catchy-tests | Simon Warta | 2015-07-15 | 18 | -30/+9951 |
|\ | | | | | Add initial catchy test: base64 | ||||
| * | Construct X509_Time from date integers in test x509 | Simon Warta | 2015-07-15 | 1 | -6/+12 |
| | | |||||
| * | Fix round_up | Simon Warta | 2015-07-15 | 10 | -20/+152 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1. src/lib/codec/base64/base64.cpp: : (round_up<size_t>(input_length, 3) / 3) * 4; 2. src/lib/codec/base64/base64.cpp: : (round_up<size_t>(input_length, 4) * 3) / 4; 3. src/lib/filters/transform_filter.cpp: return round_up(target_size, update_granularity); 4. src/lib/math/bigint/bigint.cpp: m_reg.resize(round_up<size_t>(size, 8)); 5. src/lib/math/bigint/bigint.cpp: m_reg.resize(round_up<size_t>((length / WORD_BYTES) + 1, 8)); 6. src/lib/math/numbertheory/mp_numth.cpp: BigInt z(BigInt::Positive, round_up<size_t>(2*x_sw, 16)); 7. src/lib/modes/cbc/cbc.cpp: return round_up(input_length, cipher().block_size()); 8. src/lib/modes/ecb/ecb.cpp: return round_up(input_length, cipher().block_size()); 9. src/lib/modes/xts/xts.cpp: return round_up(input_length, cipher().block_size()); 10. src/lib/pbkdf/pbkdf2/pbkdf2.cpp: const size_t blocks_needed = round_up(out_len, prf_sz) / prf_sz; 11. src/lib/tls/tls_record.cpp: const size_t buf_size = round_up( 12. src/lib/utils/rounding.h:inline T round_up(T n, T align_to) 1. Reason for change 2. Reason for change 3. first argument cannot be 0 (`target_size = 1024`) 4. Is a bug in the current implementation iff `size = 0` 5. first argument cannot be 0 6. round_up should return 0 if `x_sw = 0` 7. ? 8. ? 9. ? 10. first argument cannot be 0 (`if(out_len == 0) return 0;`) 11. first argument is unlikely to be 0 (`iv_size + msg_length + mac_size + (block_size ? 1 : 0)`) 12. Implementation | ||||
| * | Add tests: x509 (deactivated), cvc | Simon Warta | 2015-07-15 | 2 | -0/+89 |
| | | |||||
| * | Make internal headers available for tests (amalgamation) | Simon Warta | 2015-07-15 | 1 | -4/+3 |
| | | |||||
| * | Add test: stl_util; Add empty test: utils | Simon Warta | 2015-07-15 | 2 | -0/+28 |
| | | |||||
| * | Add initial catchy test: base64 | Simon Warta | 2015-07-15 | 3 | -0/+9667 |
|/ | |||||
* | Merge pull request #194 from webmaster128/test-reporting | Simon Warta | 2015-07-15 | 23 | -49/+60 |
|\ | | | | | Test reporting | ||||
| * | Have an outdata dir for tests | Simon Warta | 2015-07-15 | 4 | -6/+11 |
| | | | | | | | | ... for peaceful development | ||||
| * | Fix TEST_DATA_DIR | Simon Warta | 2015-07-15 | 20 | -40/+38 |
| | | |||||
| * | Check if there are test vector files in a given test dir | Simon Warta | 2015-07-15 | 1 | -2/+8 |
| | | |||||
| * | Improve test reporting | Simon Warta | 2015-07-15 | 2 | -7/+9 |
|/ | |||||
* | Merge pull request #192 from webmaster128/force-amalgamation | Simon Warta | 2015-07-13 | 1 | -0/+4 |
|\ | | | | | Force amalgamation in static build | ||||
| * | Force amalgamation in static build | Simon Warta | 2015-07-13 | 1 | -0/+4 |
|/ | | | | Closes #128. | ||||
* | Set CXX path to g++ 4.8 for coverity scan | Simon Warta | 2015-07-12 | 1 | -1/+1 |
| | |||||
* | Merge pull request #191 from webmaster128/test-travis-containers | Simon Warta | 2015-07-12 | 5 | -34/+52 |
|\ | | | | | Test travis container infrastructure | ||||
| * | Refactor travis configuration for the use of the container infrastructure. | Simon Warta | 2015-07-12 | 5 | -34/+52 |
|/ | |||||
* | Merge pull request #190 from webmaster128/exit-on-error | Simon Warta | 2015-07-12 | 1 | -4/+13 |
|\ | | | | | Exit configure script with return value 1 on error | ||||
| * | Exit configure script with return value 1 on error | Simon Warta | 2015-07-12 | 1 | -4/+13 |
|/ | |||||
* | Fix fuzzer.cpp to compile even if x509 or tls is disabled | Jack Lloyd | 2015-07-11 | 1 | -12/+31 |
| | |||||
* | Merge pull request #189 from webmaster128/minimal-modules-ci | Simon Warta | 2015-07-12 | 3 | -7/+27 |
|\ | | | | | Add modules all/min to travis matrix | ||||
| * | Compile openssl RSA only when botan/rsa.h is available | Simon Warta | 2015-07-12 | 1 | -0/+6 |
| | | |||||
| * | Add modules all/min to travis matrix | Simon Warta | 2015-07-12 | 2 | -7/+21 |
|/ | |||||
* | Add an application to the command line providing a fuzzer entry point. | Jack Lloyd | 2015-07-11 | 1 | -0/+122 |
| | |||||
* | Add patch files to gitignores | Jack Lloyd | 2015-07-11 | 1 | -0/+7 |
| | |||||
* | Remove dead code (Boost.Python makefile, unused configure.py functions) | Jack Lloyd | 2015-07-11 | 2 | -39/+0 |
| | |||||
* | Merge pull request #186 from webmaster128/test-make-install | Simon Warta | 2015-07-10 | 2 | -0/+3 |
|\ | | | | | Test 'make install' in CI | ||||
| * | Test make install in CI | Simon Warta | 2015-07-10 | 2 | -0/+3 |
|/ | |||||
* | Merge pull request #183 from cdesjardins/relnotes | Simon Warta | 2015-07-10 | 1 | -7/+1 |
|\ | | | | | Remove combine_relnotes references in install script |