Add hack decrypt of sound assets by dcpdecryptmxf.
[libdcp.git] / test / make_digest_test.cc
index 65ca754d53931ee654ff22ee349198786da3097c..c710f572872e98e6c8d3965b5f9ec69ab3c6ffec 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2016 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2016-2021 Carl Hetherington <cth@carlh.net>
 
     This file is part of libdcp.
 
 
     You should have received a copy of the GNU General Public License
     along with libdcp.  If not, see <http://www.gnu.org/licenses/>.
+
+    In addition, as a special exception, the copyright holders give
+    permission to link the code of portions of this program with the
+    OpenSSL library under certain conditions as described in each
+    individual source file, and distribute linked combinations
+    including the two.
+
+    You must obey the GNU General Public License in all respects
+    for all of the code used other than OpenSSL.  If you modify
+    file(s) with this exception, you may extend this exception to your
+    version of the file(s), but you are not obligated to do so.  If you
+    do not wish to do so, delete this exception statement from your
+    version.  If you delete this exception statement from all source
+    files in the program, then also delete it here.
 */
 
-#include "data.h"
+
+#include "array_data.h"
 #include "util.h"
-#include <boost/bind.hpp>
+#include <boost/bind/bind.hpp>
+#include <boost/random.hpp>
 #include <boost/test/unit_test.hpp>
 #include <sys/time.h>
 
+
+#if BOOST_VERSION >= 106100
+using namespace boost::placeholders;
+#endif
+
+
 void progress (float)
 {
 
 }
 
+
 /** Check SHA1 digests */
 BOOST_AUTO_TEST_CASE (make_digest_test)
 {
        /* Make a big file with some random data */
-       srand (1);
+
+       boost::random::mt19937 rng(1);
+       boost::random::uniform_int_distribution<> dist(0, 255);
+
        int const N = 256 * 1024 * 1024;
-       dcp::Data data (N);
-       uint8_t* p = data.data().get();
+       dcp::ArrayData data (N);
+       auto p = data.data();
        for (int i = 0; i < N; ++i) {
-               *p++ = rand() & 0xff;
+               *p++ = dist(rng);
        }
        data.write ("build/test/random");
 
        /* Hash it */
-       BOOST_CHECK_EQUAL (dcp::make_digest ("build/test/random", boost::bind (&progress, _1)), "GKbk/V3fcRtP5MaPdSmAGNbKkaU=");
+       BOOST_CHECK_EQUAL (dcp::make_digest("build/test/random", boost::bind(&progress, _1)), "HayqPBWBRKqLNgfuo4XSajc+D5s=");
 }