DASH Media Packaging SDK
 All Classes Namespaces Functions Variables Typedefs Enumerator
encryption_modes.h
1 // Copyright 2016 Google Inc. 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 MEDIA_BASE_ENCRYPTION_MODE_H_
8 #define MEDIA_BASE_ENCRYPTION_MODE_H_
9 
10 namespace edash_packager {
11 namespace media {
12 
14 enum EncryptionMode {
15  kEncryptionModeUnknown,
16  kEncryptionModeAesCtr,
17  kEncryptionModeAesCbc
18 };
19 
20 } // namespace media
21 } // namespace edash_packager
22 
23 #endif // MEDIA_BASE_ENCRYPTION_MODE_H_