⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 drm_message.h

📁 SAMSUNG 5009的源代码
💻 H
字号:
/*
// $Header: /Mux_Demux_SDK/libDrmDecrypt/src/DrmMessage.h 7     8/15/03 4:13p Wiley $
// Copyright (c) DivXNetworks, Inc. http://www.divxnetworks.com
// All rights reserved.
//
// This software is the confidential and proprietary information of DivxNetworks
// Inc. ("Confidential Information").  You shall not disclose such Confidential
// Information and shall use it only in accordance with the terms of the license
// agreement you entered into with DivXNetworks, Inc.
*/

/*
These functions and structures allow representation and manipulation
of the challenge response messages used by the ADP DRM.
*/

#ifndef DRMMESSAGE_H_INCLUDE
#define DRMMESSAGE_H_INCLUDE

typedef struct DrmMessagePackedStruct
{
    UCHAR message[MAX_MESSAGE_SIZE_BYTES];
    UCHAR sizeInBits;
} DrmMessagePacked;

typedef struct RegistrationRequestStruct
{
    UCHAR userIdGuard[OWNER_GUARD_BYTES];
    UCHAR modelId[MODEL_ID_BYTES];
} RegistrationRequest;


#ifdef __cplusplus
extern "C" {
#endif

void packRegistrationRequest(RegistrationRequest request, DrmMessagePacked *messagePacked);

void packRegistrationLogic(RegistrationRequest *request, DrmMessagePacked *messagePacked, UCHAR direction);
void registrationSecuritySwap(DrmMessagePacked *messagePacked);
void wrapSecureMessage(DrmMessagePacked *transformMessage);
void unwrapSecureMessage(DrmMessagePacked *transformMessage);

#ifdef __cplusplus
};
#endif

#endif //DRMMESSAGE_H_INCLUDE

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -