The unified diff between revisions [695f5995..] and [b597326f..] is displayed below. It can also be downloaded as a raw diff.
# # # patch "checks/algos.cpp" # from [f561cfc3ff818e5349870c882eda1559636e8702] # to [99cdd8b6e21dbd9160fe5235e95c5a65e2c69b6b] # # patch "checks/bench.cpp" # from [2a835fb858ad0e2047237b0354ea95f06d81dccd] # to [5d10d28b358da6e577efa034850d2ddd87f95839] # # patch "checks/block.cpp" # from [90fb63e8889250b9cfc9020682f5967e539a5b38] # to [f8ca4b45ff803f4d35d5ebf92874749a44beb1a3] # # patch "checks/check.cpp" # from [f206b6011fc0d8f6400fa947062d727a40c9eaa2] # to [858102eef93ac95db9cec261e401800c6fcb1204] # # patch "checks/common.h" # from [e568e3991ff0ab81e0e9805a2be1eca08235880e] # to [f38b5093c55d73fb0f0a13523b6fe523e868e06d] # # patch "checks/dolook.cpp" # from [3cd8c1e12757077793ad6b9084701c34e0bffca9] # to [e014e4765c61b3d33fe0efd7d77ba70f664dbe30] # # patch "checks/dolook2.cpp" # from [faa43ba0202c8fc388d0b6f099957bcc52ea9578] # to [37bf56072f24c843ac66295bd79544e283de9737] # # patch "checks/misc.cpp" # from [d0f63494d4a8eaf95aa9b124721d3d336193d960] # to [5b4a686ae93a523bbc29314d2d586efd926a3fb2] # # patch "checks/pk.cpp" # from [f87c0201b6b773b3d29c5824810d2043c3d4b6b9] # to [d4e0a3e7f2c2836acdc79a018fec8790dedc2e18] # # patch "checks/validate.cpp" # from [34e3699ec7308c0ddea294ca8005f0bf869ef781] # to [421f757824d705c52557bad0b4e4300c522bc9b7] # # patch "checks/validate.dat" # from [6df59e0561ca68ed7fe9b0bfc98dd4bcdc263889] # to [ba7842da435dc2cf6d0d18e9c36e39e39250408e] # # patch "checks/x509.cpp" # from [b7b1f29116d8adf8338ebc0a604b57cc86a05313] # to [f21cb6d63fcbd888a7f98ca361a561f447652ff6] # ============================================================ --- checks/algos.cpp f561cfc3ff818e5349870c882eda1559636e8702 +++ checks/algos.cpp 99cdd8b6e21dbd9160fe5235e95c5a65e2c69b6b @@ -1,4 +1,3 @@ -// this file is public domain #include <botan/botan.h> #include <string> ============================================================ --- checks/bench.cpp 2a835fb858ad0e2047237b0354ea95f06d81dccd +++ checks/bench.cpp 5d10d28b358da6e577efa034850d2ddd87f95839 @@ -1,4 +1,3 @@ -/* This file is in the public domain */ #include <iostream> #include <iomanip> ============================================================ --- checks/block.cpp 90fb63e8889250b9cfc9020682f5967e539a5b38 +++ checks/block.cpp f8ca4b45ff803f4d35d5ebf92874749a44beb1a3 @@ -1,4 +1,3 @@ -/* This file is in the public domain */ /* We don't use the standard issue ECB filter, because we also want to check ============================================================ --- checks/check.cpp f206b6011fc0d8f6400fa947062d727a40c9eaa2 +++ checks/check.cpp 858102eef93ac95db9cec261e401800c6fcb1204 @@ -1,7 +1,5 @@ /* * Test Driver for Botan - * - * This file is in the public domain */ #include <vector> @@ -20,7 +18,6 @@ using namespace Botan_types; #include "getopt.h" - const std::string VALIDATION_FILE = "checks/validate.dat"; const std::string BIGINT_VALIDATION_FILE = "checks/mp_valid.dat"; const std::string PK_VALIDATION_FILE = "checks/pk_valid.dat"; ============================================================ --- checks/common.h e568e3991ff0ab81e0e9805a2be1eca08235880e +++ checks/common.h f38b5093c55d73fb0f0a13523b6fe523e868e06d @@ -1,8 +1,7 @@ // common code for the validation and benchmark code -// this file is in the public domain -#ifndef BOTANCHECK_COMMON_H__ -#define BOTANCHECK_COMMON_H__ +#ifndef BOTAN_CHECK_COMMON_H__ +#define BOTAN_CHECK_COMMON_H__ #include <vector> #include <string> ============================================================ --- checks/dolook.cpp 3cd8c1e12757077793ad6b9084701c34e0bffca9 +++ checks/dolook.cpp e014e4765c61b3d33fe0efd7d77ba70f664dbe30 @@ -1,5 +1,3 @@ -/* This file is in the public domain */ - #include <vector> #include <string> ============================================================ --- checks/dolook2.cpp faa43ba0202c8fc388d0b6f099957bcc52ea9578 +++ checks/dolook2.cpp 37bf56072f24c843ac66295bd79544e283de9737 @@ -1,5 +1,3 @@ -/* This file is in the public domain */ - #include <vector> #include <string> #include <cstdlib> ============================================================ --- checks/misc.cpp d0f63494d4a8eaf95aa9b124721d3d336193d960 +++ checks/misc.cpp 5b4a686ae93a523bbc29314d2d586efd926a3fb2 @@ -1,4 +1,3 @@ -/* public domain */ #include <iostream> #include <vector> #include <string> ============================================================ --- checks/pk.cpp f87c0201b6b773b3d29c5824810d2043c3d4b6b9 +++ checks/pk.cpp d4e0a3e7f2c2836acdc79a018fec8790dedc2e18 @@ -1,4 +1,3 @@ -/* This file is in the public domain */ #include <iostream> #include <fstream> #include <string> ============================================================ --- checks/validate.cpp 34e3699ec7308c0ddea294ca8005f0bf869ef781 +++ checks/validate.cpp 421f757824d705c52557bad0b4e4300c522bc9b7 @@ -1,6 +1,5 @@ /* Validation routines - This file is in the public domain */ #include <iostream> ============================================================ --- checks/validate.dat 6df59e0561ca68ed7fe9b0bfc98dd4bcdc263889 +++ checks/validate.dat ba7842da435dc2cf6d0d18e9c36e39e39250408e @@ -4,8 +4,6 @@ # functions, MACs, KDFs, S2K algorithms, encoders/decoders, and block cipher # modes (CBC, CTS, CFB, OFB, CTR, and EAX) -# All of the validation files (checks/*.dat) are public domain - # MARKER: Block Ciphers # Block cipher format is plaintext:ciphertext:key ============================================================ --- checks/x509.cpp b7b1f29116d8adf8338ebc0a604b57cc86a05313 +++ checks/x509.cpp f21cb6d63fcbd888a7f98ca361a561f447652ff6 @@ -1,4 +1,3 @@ -/* This file is in the public domain */ #include <botan/x509self.h> #include <botan/x509stor.h> #include <botan/x509_ca.h>