summaryrefslogtreecommitdiff
path: root/src/mono_picture_asset_writer.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-03-06 01:15:43 +0000
committerCarl Hetherington <cth@carlh.net>2018-03-13 22:29:01 +0000
commit380d7af94562883cdcaa60726d0ffa36f3dab304 (patch)
treea36f4828d8ebf54efcf0f3155f49b54b430b67f6 /src/mono_picture_asset_writer.cc
parent0e29e68e94daade47167ac5bc6b51362ef02b5c3 (diff)
Merge EncryptionContext with DecryptionContext and use HMAC when decrypting.
Diffstat (limited to 'src/mono_picture_asset_writer.cc')
-rw-r--r--src/mono_picture_asset_writer.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mono_picture_asset_writer.cc b/src/mono_picture_asset_writer.cc
index b48e46e9..30a6ee96 100644
--- a/src/mono_picture_asset_writer.cc
+++ b/src/mono_picture_asset_writer.cc
@@ -39,7 +39,7 @@
#include "exceptions.h"
#include "picture_asset.h"
#include "dcp_assert.h"
-#include "encryption_context.h"
+#include "crypto_context.h"
#include <asdcp/AS_DCP.h>
#include <asdcp/KM_fileio.h>
@@ -87,7 +87,7 @@ MonoPictureAssetWriter::write (uint8_t const * data, int size)
uint64_t const before_offset = _state->mxf_writer.Tell ();
string hash;
- ASDCP::Result_t const r = _state->mxf_writer.WriteFrame (_state->frame_buffer, _encryption_context->encryption(), _encryption_context->hmac(), &hash);
+ ASDCP::Result_t const r = _state->mxf_writer.WriteFrame (_state->frame_buffer, _crypto_context->context(), _crypto_context->hmac(), &hash);
if (ASDCP_FAILURE (r)) {
boost::throw_exception (MXFFileError ("error in writing video MXF", _file.string(), r));
}