Tidying.
[libdcp.git] / src / decrypted_kdm_key.cc
index 40ac73e92f71c4013487ac5f7a671ea0df687e8f..5d8140ae734ead8346ef9d39192490fa3d32d7b4 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2013-2014 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2013-2021 Carl Hetherington <cth@carlh.net>
 
     This file is part of libdcp.
 
     files in the program, then also delete it here.
 */
 
+
+/** @file  src/decrypted_kdm_key.cc
+ *  @brief DecryptedKDMKey class
+ */
+
+
 #include "decrypted_kdm_key.h"
 
+
 using namespace dcp;
 
+
 bool
 dcp::operator== (dcp::DecryptedKDMKey const & a, dcp::DecryptedKDMKey const & b)
 {
@@ -42,6 +50,5 @@ dcp::operator== (dcp::DecryptedKDMKey const & a, dcp::DecryptedKDMKey const & b)
                && a.id() == b.id()
                && a.key() == b.key()
                && a.cpl_id() == b.cpl_id()
-               && a.standard() == b.standard()
-               && a.signer_thumbprint() == b.signer_thumbprint();
+               && a.standard() == b.standard();
 }