diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-09-18 18:46:58 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-09-18 18:46:58 +0100 |
| commit | 781982ea9a78f88fef130dc08cd028b7e5f47937 (patch) | |
| tree | 5132d1abeecd40814b06d148bfd126b3b48b2604 /src/encryption.h | |
| parent | 56782052e43a1e010f7f07cbc0dbaed5b6cb50a3 (diff) | |
A few encryption-related fixes and comments.
Diffstat (limited to 'src/encryption.h')
| -rw-r--r-- | src/encryption.h | 7 |
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; }; } |
