Searched refs:DecryptionKey (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/media/cdm/
H A Daes_decryptor.h83 class DecryptionKey { class in class:media::AesDecryptor
85 explicit DecryptionKey(const std::string& secret);
86 ~DecryptionKey();
100 DISALLOW_COPY_AND_ASSIGN(DecryptionKey);
113 // Creates a DecryptionKey using |key_string| and associates it with |key_id|.
119 // Gets a DecryptionKey associated with |key_id|. The AesDecryptor still owns
121 DecryptionKey* GetKey(const std::string& key_id) const;
H A Daes_decryptor.cc32 typedef std::list<std::pair<std::string, DecryptionKey*> > KeyList;
42 scoped_ptr<DecryptionKey> decryption_key);
50 // Returns the last inserted DecryptionKey.
51 DecryptionKey* LatestDecryptionKey() {
74 scoped_ptr<DecryptionKey> decryption_key) {
78 DecryptionKey* raw_ptr = decryption_key.release();
419 DecryptionKey* key = GetKey(key_id);
479 scoped_ptr<DecryptionKey> decryption_key(new DecryptionKey(key_string));
500 AesDecryptor::DecryptionKey* AesDecrypto
532 AesDecryptor::DecryptionKey::DecryptionKey(const std::string& secret) function in class:media::AesDecryptor::DecryptionKey
[all...]

Completed in 483 milliseconds