From 781982ea9a78f88fef130dc08cd028b7e5f47937 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Wed, 18 Sep 2013 18:46:58 +0100 Subject: A few encryption-related fixes and comments. --- src/encryption.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/encryption.h') 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 +#include #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; }; } -- cgit v1.2.3