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

Unified Diff: media/cast/transport/utility/transport_encryption_handler.h

Issue 388663003: Cast: Reshuffle files under media/cast (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: missing includes Created 6 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: media/cast/transport/utility/transport_encryption_handler.h
diff --git a/media/cast/transport/utility/transport_encryption_handler.h b/media/cast/transport/utility/transport_encryption_handler.h
deleted file mode 100644
index ff917f744bcd4ad7c570b6fe1a8e3390ad06e936..0000000000000000000000000000000000000000
--- a/media/cast/transport/utility/transport_encryption_handler.h
+++ /dev/null
@@ -1,55 +0,0 @@
-// Copyright 2014 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_CAST_TRANSPORT_TRANSPORT_UTILITY_ENCRYPTION_HANDLER_H_
-#define MEDIA_CAST_TRANSPORT_TRANSPORT_UTILITY_ENCRYPTION_HANDLER_H_
-
-// Helper class to handle encryption for the Cast Transport library.
-#include <string>
-
-#include "base/basictypes.h"
-#include "base/memory/scoped_ptr.h"
-#include "base/strings/string_piece.h"
-#include "base/threading/non_thread_safe.h"
-
-namespace crypto {
-class Encryptor;
-class SymmetricKey;
-}
-
-namespace media {
-namespace cast {
-namespace transport {
-
-class TransportEncryptionHandler : public base::NonThreadSafe {
- public:
- TransportEncryptionHandler();
- ~TransportEncryptionHandler();
-
- bool Initialize(std::string aes_key, std::string aes_iv_mask);
-
- bool Encrypt(uint32 frame_id,
- const base::StringPiece& data,
- std::string* encrypted_data);
-
- bool Decrypt(uint32 frame_id,
- const base::StringPiece& ciphertext,
- std::string* plaintext);
-
- bool is_activated() const { return is_activated_; }
-
- private:
- scoped_ptr<crypto::SymmetricKey> key_;
- scoped_ptr<crypto::Encryptor> encryptor_;
- std::string iv_mask_;
- bool is_activated_;
-
- DISALLOW_COPY_AND_ASSIGN(TransportEncryptionHandler);
-};
-
-} // namespace transport
-} // namespace cast
-} // namespace media
-
-#endif // MEDIA_CAST_TRANSPORT_TRANSPORT_UTILITY_ENCRYPTION_HANDLER_H_
« no previous file with comments | « media/cast/transport/transport/udp_transport_unittest.cc ('k') | media/cast/transport/utility/transport_encryption_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698