summaryrefslogtreecommitdiff
path: root/src/decrypted_kdm_key.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2017-02-14 16:47:41 +0000
committerCarl Hetherington <cth@carlh.net>2017-02-14 16:47:41 +0000
commit250d37b7f4bf255cdca9ce418bf4877e5c9efc13 (patch)
treecae1f480c085185c3d79f4cc03e730c8f639c184 /src/decrypted_kdm_key.h
parentadb4f8a5014c3888f3322d1765fb0ee52b1d3169 (diff)
Remove erroneously committed signer thumbprint stuff.
Diffstat (limited to 'src/decrypted_kdm_key.h')
-rw-r--r--src/decrypted_kdm_key.h8
1 files changed, 1 insertions, 7 deletions
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<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 &);