// Copyright 2014 Google Inc. All rights reserved. // // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file or at // https://developers.google.com/open-source/licenses/bsd #ifndef MEDIA_BASE_REQUEST_SIGNER_H_ #define MEDIA_BASE_REQUEST_SIGNER_H_ #include #include "packager/base/memory/scoped_ptr.h" namespace edash_packager { namespace media { class AesCbcEncryptor; class RsaPrivateKey; /// Abstract class used for signature generation. class RequestSigner { public: virtual ~RequestSigner(); /// Generate signature for the input message. /// @param signature should not be NULL. /// @return true on success, false otherwise. virtual bool GenerateSignature(const std::string& message, std::string* signature) = 0; const std::string& signer_name() const { return signer_name_; } protected: explicit RequestSigner(const std::string& signer_name); private: std::string signer_name_; DISALLOW_COPY_AND_ASSIGN(RequestSigner); }; /// AesRequestSigner uses AES-CBC signing. class AesRequestSigner : public RequestSigner { public: ~AesRequestSigner() override; /// Create an AesSigner object from key and iv in hex. /// @return The created AesRequestSigner object on success, NULL otherwise. static AesRequestSigner* CreateSigner(const std::string& signer_name, const std::string& aes_key_hex, const std::string& iv_hex); /// RequestSigner implementation override. bool GenerateSignature(const std::string& message, std::string* signature) override; private: AesRequestSigner(const std::string& signer_name, scoped_ptr encryptor); scoped_ptr aes_cbc_encryptor_; DISALLOW_COPY_AND_ASSIGN(AesRequestSigner); }; /// RsaRequestSigner uses RSA-PSS signing. class RsaRequestSigner : public RequestSigner { public: ~RsaRequestSigner() override; /// Create an RsaSigner object using a DER encoded PKCS#1 RSAPrivateKey. /// @return The created RsaRequestSigner object on success, NULL otherwise. static RsaRequestSigner* CreateSigner(const std::string& signer_name, const std::string& pkcs1_rsa_key); /// RequestSigner implementation override. bool GenerateSignature(const std::string& message, std::string* signature) override; private: RsaRequestSigner(const std::string& signer_name, scoped_ptr rsa_private_key); scoped_ptr rsa_private_key_; DISALLOW_COPY_AND_ASSIGN(RsaRequestSigner); }; } // namespace media } // namespace edash_packager #endif // MEDIA_BASE_REQUEST_SIGNER_H_