Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(464)

Side by Side Diff: media/crypto/aes_decryptor.h

Issue 10534096: Generalize AesDecryptor to make it more spec compliant. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Revise on comments. Created 8 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef MEDIA_CRYPTO_AES_DECRYPTOR_H_ 5 #ifndef MEDIA_CRYPTO_AES_DECRYPTOR_H_
6 #define MEDIA_CRYPTO_AES_DECRYPTOR_H_ 6 #define MEDIA_CRYPTO_AES_DECRYPTOR_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
11 #include "base/hash_tables.h" 11 #include "base/hash_tables.h"
12 #include "base/memory/ref_counted.h" 12 #include "base/memory/ref_counted.h"
13 #include "base/synchronization/lock.h" 13 #include "base/synchronization/lock.h"
14 #include "media/base/media_export.h" 14 #include "media/base/media_export.h"
15 15
16 namespace crypto { 16 namespace crypto {
17 class SymmetricKey; 17 class SymmetricKey;
18 } 18 }
19 19
20 namespace media { 20 namespace media {
21 21
22 class DecoderBuffer; 22 class DecoderBuffer;
23 class DecryptorClient;
23 24
24 // Decrypts AES encrypted buffer into unencrypted buffer. 25 // Decrypts AES encrypted buffer into unencrypted buffer.
26 // All public methods other than Decrypt() will be called on the renderer
27 // thread. Therefore, these calls should be fast and nonblocking, with key
28 // events fired asynchronously. Decrypt() will be called on the (video/audio)
29 // decoder thread synchronously.
25 class MEDIA_EXPORT AesDecryptor { 30 class MEDIA_EXPORT AesDecryptor {
26 public: 31 public:
27 AesDecryptor(); 32 enum KeyError {
33 kUnknownError = 1,
34 kClientError,
35 kServiceError,
36 kOutputError,
37 kHardwareChangeError,
38 kDomainError
39 };
40
41 // The AesDecryptor does not take ownership of the |client|. The |client|
42 // must be valid throughout the lifetime of the AesDecryptor.
43 explicit AesDecryptor(DecryptorClient* client);
28 ~AesDecryptor(); 44 ~AesDecryptor();
29 45
30 // Add a |key_id| and |key| pair to the key system. The key is not limited to 46 // Generates a key request. The result of this call will be reported via the
31 // a decryption key. It can be any data that the key system accepts, such as 47 // client's KeyMessage() or KeyError() methods.
32 // a license. If multiple calls of this function set different keys for the 48 void GenerateKeyRequest(const std::string& key_system,
33 // same |key_id|, the older key will be replaced by the newer key. 49 const uint8* init_data,
34 void AddKey(const uint8* key_id, int key_id_size, 50 int init_data_length);
35 const uint8* key, int key_size);
36 51
37 // Decrypt |input| buffer. The |input| should not be NULL. 52 // Adds a |key| to the key system. The key is not limited to a decryption key.
38 // Return a DecoderBuffer with the decrypted data if decryption succeeded. 53 // It can be any data that the key system accepts, such as a license.
39 // Return NULL if decryption failed. 54 // If multiple calls of this function set different keys for the same
55 // |key_id|, the older key will be replaced by the newer key.
56 // The result of this call will be reported via the client's KeyAdded(),
57 // KeyMessage() or KeyError() methods.
58 void AddKey(const std::string& key_system,
59 const uint8* key,
60 int key_length,
61 const uint8* init_data,
62 int init_data_length,
63 const std::string& session_id);
64
65 // Cancels the key request specified by |session_id|.
66 void CancelKeyRequest(const std::string& key_system,
67 const std::string& session_id);
68
69 // Decrypts the |input| buffer, which should not be NULL.
70 // Returns a DecoderBuffer with the decrypted data if decryption succeeded.
71 // Returns NULL if decryption failed.
40 scoped_refptr<DecoderBuffer> Decrypt( 72 scoped_refptr<DecoderBuffer> Decrypt(
41 const scoped_refptr<DecoderBuffer>& input); 73 const scoped_refptr<DecoderBuffer>& input);
42 74
43 private: 75 private:
44 // KeyMap owns the crypto::SymmetricKey* and must delete them when they are 76 // KeyMap owns the crypto::SymmetricKey* and must delete them when they are
45 // not needed any more. 77 // not needed any more.
46 typedef base::hash_map<std::string, crypto::SymmetricKey*> KeyMap; 78 typedef base::hash_map<std::string, crypto::SymmetricKey*> KeyMap;
47 KeyMap key_map_; 79 // Since only Decrypt() is called off the renderer thread, we only need to
scherkus (not reviewing) 2012/06/15 04:29:21 nit: blank lines before comments
xhwang 2012/06/15 16:39:18 Done.
48 base::Lock lock_; 80 // protect |key_map_|, the only member variable that is shared between
81 // Decrypt() and other methods.
82 KeyMap key_map_; // Protected by the |key_map_lock_|.
83 base::Lock key_map_lock_; // Protects the |key_map_|.
84
85 DecryptorClient* client_;
86
87 // Make session ID unique per renderer by making it static.
88 // TODO(xhwang): Make session ID more strictly defined if needed:
89 // https://www.w3.org/Bugs/Public/show_bug.cgi?id=16739#c0
90 static uint32 next_session_id_;
49 91
50 DISALLOW_COPY_AND_ASSIGN(AesDecryptor); 92 DISALLOW_COPY_AND_ASSIGN(AesDecryptor);
51 }; 93 };
52 94
53 } // namespace media 95 } // namespace media
54 96
55 #endif // MEDIA_CRYPTO_AES_DECRYPTOR_H_ 97 #endif // MEDIA_CRYPTO_AES_DECRYPTOR_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698