From 250d37b7f4bf255cdca9ce418bf4877e5c9efc13 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 14 Feb 2017 16:47:41 +0000 Subject: Remove erroneously committed signer thumbprint stuff. --- src/decrypted_kdm_key.h | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'src/decrypted_kdm_key.h') diff --git a/src/decrypted_kdm_key.h b/src/decrypted_kdm_key.h index b98f1b2b..3fee9a68 100644 --- a/src/decrypted_kdm_key.h +++ b/src/decrypted_kdm_key.h @@ -50,13 +50,12 @@ namespace dcp { class DecryptedKDMKey { public: - DecryptedKDMKey (boost::optional type, std::string id, Key key, std::string cpl_id, Standard standard, std::string signer_thumbprint) + DecryptedKDMKey (boost::optional 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 type () const { @@ -79,17 +78,12 @@ public: return _standard; } - std::string signer_thumbprint () const { - return _signer_thumbprint; - } - private: boost::optional _type; std::string _id; Key _key; std::string _cpl_id; Standard _standard; - std::string _signer_thumbprint; }; bool operator== (DecryptedKDMKey const &, DecryptedKDMKey const &); -- cgit v1.2.3