MXF -> Asset in lots of places.
[libdcp.git] / src / decrypted_kdm.h
index 91b2f7d3d25a2ebe8d116cdf1ede49e4b6f38170..5ea67861250827608fc255f4a35733e1fc69aa5f 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2013-2014 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2013-2015 Carl Hetherington <cth@carlh.net>
 
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
@@ -45,7 +45,7 @@ class CPL;
  *  has been created (by some other means) ready for encryption later.
  *
  *  A DecryptedKDM object can be created either from an EncryptedKDM and private key file,
- *  or from the details of the MXFs that the KDM should protect.
+ *  or from the details of the assets that the KDM should protect.
  */
 class DecryptedKDM
 {
@@ -57,7 +57,7 @@ public:
 
        /** Construct a DecryptedKDM.
         *  @param cpl CPL that the keys are for.
-        *  @param key Key that was used to encrypt the MXFs.
+        *  @param key Key that was used to encrypt the assets.
         *  @param not_valid_before Start time for the KDM.
         *  @param not_valid_after End time for the KDM.
         */
@@ -79,7 +79,7 @@ public:
         */
        EncryptedKDM encrypt (boost::shared_ptr<const Signer> signer, Certificate recipient, Formulation formulation) const;
 
-       /** @return This KDM's (decrypted) keys, which could be used to decrypt MXFs. */
+       /** @return This KDM's (decrypted) keys, which could be used to decrypt assets. */
        std::list<DecryptedKDMKey> keys () const {
                return _keys;
        }