Shaka Packager SDK
Loading...
Searching...
No Matches
sample_aes_ec3_cryptor.h
1// Copyright 2018 Google LLC. All rights reserved.
2//
3// Use of this source code is governed by a BSD-style
4// license that can be found in the LICENSE file or at
5// https://developers.google.com/open-source/licenses/bsd
6
7#ifndef PACKAGER_MEDIA_CRYPTO_SAMPLE_AES_EC3_CRYPTOR_H_
8#define PACKAGER_MEDIA_CRYPTO_SAMPLE_AES_EC3_CRYPTOR_H_
9
10#include <cstdint>
11
12#include <packager/media/base/aes_cryptor.h>
13
14namespace shaka {
15namespace media {
16
20 public:
24 explicit SampleAesEc3Cryptor(std::unique_ptr<AesCryptor> cryptor);
25
28 bool InitializeWithIv(const std::vector<uint8_t>& key,
29 const std::vector<uint8_t>& iv) override;
31
32 private:
34 SampleAesEc3Cryptor& operator=(const SampleAesEc3Cryptor&) = delete;
35
36 // AesCryptor implementation overrides.
37 bool CryptInternal(const uint8_t* text,
38 size_t text_size,
39 uint8_t* crypt_text,
40 size_t* crypt_text_size) override;
41 void SetIvInternal() override;
42
43 std::unique_ptr<AesCryptor> cryptor_;
44};
45
46} // namespace media
47} // namespace shaka
48
49#endif // PACKAGER_MEDIA_CRYPTO_SAMPLE_AES_EC3_CRYPTOR_H_
const std::vector< uint8_t > & iv() const
Definition aes_cryptor.h:86
bool InitializeWithIv(const std::vector< uint8_t > &key, const std::vector< uint8_t > &iv) override
All the methods that are virtual are virtual for mocking.