OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DecryptionKey
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/media/cdm/
aes_decryptor.h
72
class
DecryptionKey
{
74
explicit
DecryptionKey
(const std::string& secret);
75
~
DecryptionKey
();
89
DISALLOW_COPY_AND_ASSIGN(
DecryptionKey
);
102
// Creates a
DecryptionKey
using |key_string| and associates it with |key_id|.
108
// Gets a
DecryptionKey
associated with |key_id|. The AesDecryptor still owns
110
DecryptionKey
* GetKey(const std::string& key_id) const;
aes_decryptor.cc
31
typedef std::list<std::pair<uint32,
DecryptionKey
*> > KeyList;
40
void Insert(uint32 session_id, scoped_ptr<
DecryptionKey
> decryption_key);
48
// Returns the last inserted
DecryptionKey
.
49
DecryptionKey
* LatestDecryptionKey() {
68
scoped_ptr<
DecryptionKey
> decryption_key) {
72
DecryptionKey
* raw_ptr = decryption_key.release();
341
DecryptionKey
* key = GetKey(key_id);
401
scoped_ptr<
DecryptionKey
> decryption_key(new
DecryptionKey
(key_string));
427
AesDecryptor::
DecryptionKey
* AesDecryptor::GetKey
[
all
...]
Completed in 62 milliseconds