diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-03-06 01:15:43 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-03-13 22:29:01 +0000 |
| commit | 380d7af94562883cdcaa60726d0ffa36f3dab304 (patch) | |
| tree | a36f4828d8ebf54efcf0f3155f49b54b430b67f6 /src/stereo_picture_asset_writer.cc | |
| parent | 0e29e68e94daade47167ac5bc6b51362ef02b5c3 (diff) | |
Merge EncryptionContext with DecryptionContext and use HMAC when decrypting.
Diffstat (limited to 'src/stereo_picture_asset_writer.cc')
| -rw-r--r-- | src/stereo_picture_asset_writer.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/stereo_picture_asset_writer.cc b/src/stereo_picture_asset_writer.cc index db770e8b..14900e6d 100644 --- a/src/stereo_picture_asset_writer.cc +++ b/src/stereo_picture_asset_writer.cc @@ -35,7 +35,7 @@ #include "exceptions.h" #include "dcp_assert.h" #include "picture_asset.h" -#include "encryption_context.h" +#include "crypto_context.h" #include <asdcp/AS_DCP.h> #include <asdcp/KM_fileio.h> @@ -88,8 +88,8 @@ StereoPictureAssetWriter::write (uint8_t const * data, int size) Kumu::Result_t r = _state->mxf_writer.WriteFrame ( _state->frame_buffer, _next_eye == EYE_LEFT ? ASDCP::JP2K::SP_LEFT : ASDCP::JP2K::SP_RIGHT, - _encryption_context->encryption(), - _encryption_context->hmac(), + _crypto_context->context(), + _crypto_context->hmac(), &hash ); |
