summaryrefslogtreecommitdiffstats
path: root/media/crypto/aes_decryptor.h
blob: 32d6802a1b95f85b30bb64da0487014ce204b7ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef MEDIA_CRYPTO_AES_DECRYPTOR_H_
#define MEDIA_CRYPTO_AES_DECRYPTOR_H_

#include "base/basictypes.h"
#include "base/memory/ref_counted.h"
#include "media/base/media_export.h"

namespace media {

class Buffer;

// Decrypts AES encrypted buffer into unencrypted buffer.
class MEDIA_EXPORT AesDecryptor {
 public:
  AesDecryptor();

  // Decrypt |input| buffer. The |input| should not be NULL.
  // Return a Buffer that contains decrypted data if decryption succeeded.
  // Return NULL if decryption failed.
  scoped_refptr<Buffer> Decrypt(const scoped_refptr<Buffer>& input);

 private:
  DISALLOW_COPY_AND_ASSIGN(AesDecryptor);
};

}  // namespace media

#endif  // MEDIA_CRYPTO_AES_DECRYPTOR_H_