Remove erroneously committed signer thumbprint stuff.
authorCarl Hetherington <cth@carlh.net>
Tue, 14 Feb 2017 16:47:41 +0000 (16:47 +0000)
committerCarl Hetherington <cth@carlh.net>
Tue, 14 Feb 2017 16:47:41 +0000 (16:47 +0000)
src/decrypted_kdm_key.cc
src/decrypted_kdm_key.h

index 40ac73e92f71c4013487ac5f7a671ea0df687e8f..e5adc3c668738aba111af77e92f39570203c4afb 100644 (file)
@@ -42,6 +42,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();
 }
index b98f1b2b3eae2fca8a037e21aceec84a9f041013..3fee9a68963a46ca7fd9d9a646c65423633f9135 100644 (file)
@@ -50,13 +50,12 @@ namespace dcp {
 class DecryptedKDMKey
 {
 public:
-       DecryptedKDMKey (boost::optional<std::string> type, std::string id, Key key, std::string cpl_id, Standard standard, std::string signer_thumbprint)
+       DecryptedKDMKey (boost::optional<std::string> type, std::string id, Key key, std::string cpl_id, Standard standard)
                : _type (type)
                , _id (id)
                , _key (key)
                , _cpl_id (cpl_id)
                , _standard (standard)
-               , _signer_thumbprint (signer_thumbprint)
        {}
 
        boost::optional<std::string> type () const {
@@ -79,17 +78,12 @@ public:
                return _standard;
        }
 
-       std::string signer_thumbprint () const {
-               return _signer_thumbprint;
-       }
-
 private:
        boost::optional<std::string> _type;
        std::string _id;
        Key _key;
        std::string _cpl_id;
        Standard _standard;
-       std::string _signer_thumbprint;
 };
 
 bool operator== (DecryptedKDMKey const &, DecryptedKDMKey const &);