HomeSort by relevance Sort by last modified time
    Searched refs:DecryptionKey (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/media/cdm/
aes_decryptor.h 74 class DecryptionKey {
76 explicit DecryptionKey(const std::string& secret);
77 ~DecryptionKey();
91 DISALLOW_COPY_AND_ASSIGN(DecryptionKey);
104 // Creates a DecryptionKey using |key_string| and associates it with |key_id|.
110 // Gets a DecryptionKey associated with |key_id|. The AesDecryptor still owns
112 DecryptionKey* GetKey(const std::string& key_id) const;
aes_decryptor.cc 32 typedef std::list<std::pair<std::string, DecryptionKey*> > KeyList;
42 scoped_ptr<DecryptionKey> decryption_key);
50 // Returns the last inserted DecryptionKey.
51 DecryptionKey* LatestDecryptionKey() {
70 scoped_ptr<DecryptionKey> decryption_key) {
74 DecryptionKey* raw_ptr = decryption_key.release();
368 DecryptionKey* key = GetKey(key_id);
428 scoped_ptr<DecryptionKey> decryption_key(new DecryptionKey(key_string));
449 AesDecryptor::DecryptionKey* AesDecryptor::GetKey
    [all...]

Completed in 92 milliseconds