summaryrefslogtreecommitdiff
path: root/src/encryption.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/encryption.h')
-rw-r--r--src/encryption.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/encryption.h b/src/encryption.h
index f143f0df..b6d79b19 100644
--- a/src/encryption.h
+++ b/src/encryption.h
@@ -17,7 +17,7 @@
*/
-#include <string>
+#include <boost/filesystem.hpp>
#include "certificates.h"
namespace libdcp {
@@ -25,13 +25,14 @@ namespace libdcp {
class Encryption
{
public:
- Encryption (CertificateChain c, std::string const & k)
+ Encryption (CertificateChain c, boost::filesystem::path k)
: certificates (c)
, signer_key (k)
{}
CertificateChain certificates;
- std::string signer_key;
+ /** Filename of signer key */
+ boost::filesystem::path signer_key;
};
}