Fix media_cas_proxy_sdk build issue.
Add example binary for testing building the SDK after 'git clone' from our repo. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=227583629
This commit is contained in:
@@ -14,7 +14,7 @@
|
||||
#define COMMON_CLIENT_ID_UTIL_H_
|
||||
|
||||
#include "absl/strings/string_view.h"
|
||||
#include "util/status.h"
|
||||
#include "common/status.h"
|
||||
#include "protos/public/client_identification.pb.h"
|
||||
|
||||
namespace widevine {
|
||||
@@ -43,16 +43,16 @@ std::string GetClientInfo(const ClientIdentification& client_id,
|
||||
// |client_id| using the private key for the service certificate which was
|
||||
// used to encrypt the information.
|
||||
// |client_id| is owned by caller.
|
||||
// Returns util::Status::OK, if successful, else an error.
|
||||
util::Status DecryptEncryptedClientIdentification(
|
||||
// Returns Status::OK, if successful, else an error.
|
||||
Status DecryptEncryptedClientIdentification(
|
||||
const EncryptedClientIdentification& encrypted_client_id,
|
||||
ClientIdentification* client_id);
|
||||
|
||||
// Decrypts the encrypted client identification in |encrypted_client_id| into
|
||||
// |client_id| using |privacy_key|.
|
||||
// |client_id| is owned by caller.
|
||||
// Returns util::Status::OK, if successful, else an error.
|
||||
util::Status DecryptEncryptedClientIdentification(
|
||||
// Returns Status::OK, if successful, else an error.
|
||||
Status DecryptEncryptedClientIdentification(
|
||||
const EncryptedClientIdentification& encrypted_client_id,
|
||||
const std::string& privacy_key, ClientIdentification* client_id);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user