summaryrefslogtreecommitdiff
path: root/src/encryption.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-09-19 13:49:37 +0100
committerCarl Hetherington <cth@carlh.net>2013-09-19 13:49:37 +0100
commit452144160eb864984121d3fa883a12d40fbf7e47 (patch)
treef5da78c803eb8f668d2409de856ddc86be81d492 /src/encryption.h
parentafeea0415dd56a3106a4c71df2e4a6ccc2d72e74 (diff)
Rename Encryption -> Signer; move some methods into it.
Diffstat (limited to 'src/encryption.h')
-rw-r--r--src/encryption.h38
1 files changed, 0 insertions, 38 deletions
diff --git a/src/encryption.h b/src/encryption.h
deleted file mode 100644
index b6d79b19..00000000
--- a/src/encryption.h
+++ /dev/null
@@ -1,38 +0,0 @@
-/*
- Copyright (C) 2013 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
- the Free Software Foundation; either version 2 of the License, or
- (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software
- Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-
-*/
-
-#include <boost/filesystem.hpp>
-#include "certificates.h"
-
-namespace libdcp {
-
-class Encryption
-{
-public:
- Encryption (CertificateChain c, boost::filesystem::path k)
- : certificates (c)
- , signer_key (k)
- {}
-
- CertificateChain certificates;
- /** Filename of signer key */
- boost::filesystem::path signer_key;
-};
-
-}