hv_drv_Hdcp2xRx.h 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602
  1. /**
  2. * @file hv_drv_Hdcp2xRx.h
  3. * @brief Header file of drv module.
  4. *
  5. * @verbatim
  6. * ==============================================================================
  7. * ##### How to use #####
  8. * ==============================================================================
  9. * (+) Use Hv_Engine_RxCalcMontNPrime(...) calculate the Montgomery NPrime.
  10. * (+) Use Hv_Engine_RxRsaesOaepEncrypt(...) implements the RSAES-OAEP-Encrypt operation
  11. * (+) Use Hv_Engine_RxRsaesOaepDecrypt(...) implements the RSAES-OAEP-Decrypt operation.
  12. * (+) Use Hv_Engine_RxComputeHPrime(...) computes HPrime used during HDCP 2.2 authentication.
  13. * (+) Use Hv_Engine_RxComputeEkh(...) computes Ekh used during HDCP 2.2 authentication.
  14. * (+) Use Hv_Engine_RxComputeLPrime(...) computes LPrime used during HDCP 2.2 locality check.
  15. * (+) Use Hv_Engine_RxComputeKs(...) computes the Ks used during HDCP 2.2 session key exchange.
  16. * (+) Use Hv_Engine_RxComputeVPrime(...) computes VPrime used during HDCP 2.2 repeater.
  17. * (+) Use Hv_Engine_RxComputeMPrime(...) computes VPrime used during HDCP 2.2 repeater.
  18. *
  19. * @endverbatim
  20. *
  21. * @author HiView SoC Software Team
  22. * @version 1.0.0
  23. * @date 2022-08-30
  24. */
  25. #ifndef HV_DRV_HDCP2X_RX_H /* prevent circular inclusions */
  26. #define HV_DRV_HDCP2X_RX_H /* by using protection macros */
  27. #ifdef __cplusplus
  28. extern "C" {
  29. #endif
  30. /***************************** Include Files ********************************/
  31. #include "hv_vos_Comm.h"
  32. #include "hv_comm_DataType.h"
  33. #include "hv_comm_Define.h"
  34. /************************** Constant Definitions ****************************/
  35. /************************** Variable Declaration ****************************/
  36. #define HV_HDCP_2X_RX_AES_SIZE 16 /** AES size size in bytes */
  37. #define HV_HDCP_2X_RX_SEQNUMV_SIZE 3 /** Repeater seq_num_V size in bytes */
  38. #define HV_HDCP_2X_RX_RXINFO_SIZE 2 /** Repeater RxInfo size in bytes */
  39. #define HV_HDCP_2X_RX_V_SIZE 16 /** Repeater V size in bytes */
  40. #define HV_HDCP_2X_RX_K_SIZE 2 /** Repeater K size in bytes */
  41. #define HV_HDCP_2X_RX_RECEIVER_ID_LIST_SIZE 5*31
  42. #define HV_HDCP_2X_RX_EKPUBKM_SIZE 128
  43. #define HV_HDCP_2X_Rx_EDKEYKS_SIZE 16 /** EDKEYKS size size in bytes */
  44. #define HV_HDCP_2X_RX_KM_SIZE 16 /** Km size in bytes */
  45. #define HV_HDCP_2X_RX_M_SIZE 16 /** m size in bytes */
  46. #define HV_HDCP_2X_RX_EKH_SIZE 16 /** Ekh size size in bytes */
  47. #define HV_HDCP_2X_RX_HPRIME_SIZE 32 /** HPrime size size in bytes */
  48. #define HV_HDCP_2X_RX_LPRIME_SIZE 32 /** LPrime size size in bytes */
  49. #define HV_HDCP_2X_RX_RN_SIZE 8 /** Rn size size in bytes */
  50. #define HV_HDCP_2X_RX_RIV_SIZE 8 /** Riv size size in bytes */
  51. #define HV_HDCP_2X_RX_KS_SIZE 16 /** Ks size size in bytes */
  52. #define HV_HDCP_2X_RX_RTX_SIZE 8 /** Rtx size size in bytes */
  53. #define HV_HDCP_2X_RX_RRX_SIZE 8 /** Rrx size size in bytes */
  54. #define HV_HDCP_2X_RX_TXCAPS_SIZE 3 /** TxCaps size size in bytes */
  55. #define HV_HDCP_2X_RX_RXCAPS_SIZE 3 /** RxCaps size size in bytes */
  56. #define HV_HDCP_2X_RX_VPRIME_SIZE 32 /** Repeater VPrime size in bytes */
  57. #define HV_HDCP_2X_RX_SEQNUMM_SIZE 3 /** Repeater seq_num_M size in bytes */
  58. #define HV_HDCP_2X_RX_MPRIME_SIZE 32 /** Repeater MPrime size in bytes */
  59. #define HV_HDCP_2X_RX_STREAMID_SIZE 2 /** Repeater MPrime size in bytes */
  60. #define HV_HDCP_2X_RX_MOD_SIZE 16
  61. #define HV_HDCP_2X_RX_MAX_MESSAGE_SIZE 534 /**< Maximum message size */
  62. #define HV_HDCP_2X_RX_N_PRIME_P_SIZE 64
  63. #define HV_HDCP_2X_RX_N_PRIME_Q_SIZE 64
  64. /** Hdcp2x Tx size in bytes */
  65. #define HV_HDCP_2X_TX_E_KPUB_KM_SIZE 128
  66. #define HV_HDCP_2X_TX_EKH_KM_SIZE 16
  67. #define HV_HDCP_2X_TX_RN_SIZE 8
  68. /** Hdcp2x Public Key size in bytes */
  69. #define HV_HDCP_2X_RX_N_SIZE 128
  70. #define HV_HDCP_2X_RX_E_SIZE 3
  71. /** Hdcp2x Private Key size in bytes */
  72. #define HV_HDCP_2X_RX_P_SIZE 64
  73. #define HV_HDCP_2X_RX_Q_SIZE 64
  74. #define HV_HDCP_2X_RX_DP_SIZE 64
  75. #define HV_HDCP_2X_RX_DQ_SIZE 64
  76. #define HV_HDCP_2X_RX_QINV_SIZE 64
  77. /** Hdcp2x Cert size in bytes */
  78. #define HV_HDCP_2X_RECEIVER_ID_SIZE 5
  79. #define HV_HDCP_2X_RX_KPUB_SIZE 131
  80. #define HV_HDCP_2X_RESERVED_SIZE 2
  81. #define HV_HDCP_2X_SIGN_SIZE 384
  82. /**
  83. * These constants are the message identification codes.
  84. */
  85. typedef enum
  86. {
  87. HV_HDCP_2X_RX_MSG_ID_AKEINIT = 2, /**< AKE_Init message ID */
  88. HV_HDCP_2X_RX_MSG_ID_AKESENDCERT = 3, /**< AKE_Send_Cert message ID */
  89. HV_HDCP_2X_RX_MSG_ID_AKENOSTOREDKM = 4, /**< AKE_No_Stored_km message ID */
  90. HV_HDCP_2X_RX_MSG_ID_AKESTOREDKM = 5, /**< AKE_Stored_km message ID */
  91. HV_HDCP_2X_RX_MSG_ID_AKESENDHPRIME = 7, /**< AKE_Send_H_prime message ID */
  92. HV_HDCP_2X_RX_MSG_ID_AKESENDPAIRINGINFO = 8, /**< AKE_Send_Pairing_Info message ID */
  93. HV_HDCP_2X_RX_MSG_ID_LCINIT = 9, /**< LC_Init message ID */
  94. HV_HDCP_2X_RX_MSG_ID_LCSENDLPRIME = 10, /**< LC_Send_L_prime message ID */
  95. HV_HDCP_2X_RX_MSG_ID_SKESENDEKS = 11, /**< SKE_Send_Eks message ID */
  96. HV_HDCP_2X_RX_MSG_ID_REPEATERAUTHSENDRXIDLIST = 12, /**< RepeaterAuth_Send_ReceiverID_List message ID */
  97. HV_HDCP_2X_RX_MSG_ID_REPEATERAUTHSENDACK = 15, /**< RepeaterAuth_Send_Ack message ID */
  98. HV_HDCP_2X_RX_MSG_ID_REPEATERAUTHSTREAMMANAGE = 16, /**< RepeaterAuth_Stream_Manage message ID */
  99. HV_HDCP_2X_RX_MSG_ID_REPEATERAUTHSTREAMREADY = 17, /**< RepeaterAuth_Stream_Ready message ID */
  100. HV_HDCP_2X_RX_MSG_ID_INVALID = 0xFF
  101. } HV_HDCP_2X_RX_MSG_ID;
  102. /*******HDCP 2.X***********************/
  103. typedef struct
  104. {
  105. /** Montgomery 2^2k mod p array */
  106. UINT32 AmodP[HV_HDCP_2X_RX_MOD_SIZE];
  107. /** Montgomery 2^2k mod q array */
  108. UINT32 AmodQ[HV_HDCP_2X_RX_MOD_SIZE];
  109. /** Montgomery 2^k mod p array */
  110. UINT32 CmodP[HV_HDCP_2X_RX_MOD_SIZE];
  111. /** Montgomery 2^k mod q array */
  112. UINT32 CmodQ[HV_HDCP_2X_RX_MOD_SIZE];
  113. } Hdcp2xRxMmult;
  114. /**
  115. * This typedef is used to store temporary parameters for computations
  116. */
  117. typedef struct _Hdcp2xRxParams
  118. {
  119. UCHAR8 Rtx[HV_HDCP_2X_RX_RTX_SIZE];
  120. UCHAR8 TxCaps[HV_HDCP_2X_RX_TXCAPS_SIZE];
  121. UCHAR8 Rrx[HV_HDCP_2X_RX_RRX_SIZE];
  122. UCHAR8 RxCaps[HV_HDCP_2X_RX_RXCAPS_SIZE];
  123. UCHAR8 Km[HV_HDCP_2X_RX_KM_SIZE];
  124. UCHAR8 Rn[HV_HDCP_2X_RX_RN_SIZE];
  125. UCHAR8 HPrime[HV_HDCP_2X_RX_HPRIME_SIZE];
  126. UCHAR8 LPrime[HV_HDCP_2X_RX_LPRIME_SIZE];
  127. UCHAR8 EKh[HV_HDCP_2X_RX_EKH_SIZE];
  128. UCHAR8 EKhKm[HV_HDCP_2X_RX_KM_SIZE];
  129. UCHAR8 M[HV_HDCP_2X_RX_M_SIZE];
  130. UCHAR8 Riv[HV_HDCP_2X_RX_RIV_SIZE];
  131. UCHAR8 Ks[HV_HDCP_2X_RX_KS_SIZE];
  132. UCHAR8 VPrime[HV_HDCP_2X_RX_VPRIME_SIZE];
  133. UCHAR8 SeqNumM[HV_HDCP_2X_RX_SEQNUMM_SIZE];
  134. UCHAR8 StreamIdType[HV_HDCP_2X_RX_STREAMID_SIZE];
  135. UCHAR8 MPrime[HV_HDCP_2X_RX_MPRIME_SIZE];
  136. UCHAR8 EDkeyKs[HV_HDCP_2X_Rx_EDKEYKS_SIZE];
  137. UCHAR8 EKpubKm[HV_HDCP_2X_RX_EKPUBKM_SIZE];
  138. } Hdcp2xRxParams;
  139. /**
  140. * The XHdcp driver instance data. The user is required to
  141. * allocate a variable of this type for every HDCP-RX device in the
  142. * system. A pointer to a variable of this type is then passed to the driver
  143. * API functions.
  144. */
  145. typedef struct
  146. {
  147. /** DCP public certificate pointer */
  148. const UCHAR8 *pucPubCert;
  149. /** RSA private key pointer */
  150. const UCHAR8 *pucPrivKey;
  151. /** pU8Lc128 is a pointer to the LC128 key.*/
  152. const UCHAR8 *pucLc128;
  153. /** Montgomery NPrimeP array */
  154. UCHAR8 NPrimeP[HV_HDCP_2X_RX_N_PRIME_P_SIZE];
  155. /** Montgomery NPrimeQ array */
  156. UCHAR8 NPrimeQ[HV_HDCP_2X_RX_N_PRIME_Q_SIZE];
  157. /** HDCP-RX authentication and key exchange parameters */
  158. Hdcp2xRxParams stParams;
  159. /** Message size */
  160. USHORT16 uiMsgSize;
  161. /** Message structure */
  162. UCHAR8 aucMsgBuff[HV_HDCP_2X_RX_MAX_MESSAGE_SIZE];
  163. Hdcp2xRxMmult *pstmmult;
  164. } Hdcp2xRx;
  165. /************HDCP2x Rx Send Msg State************ */
  166. typedef enum _Hdcp2xRxMsgState
  167. {
  168. HDCP2X_AKE_SEND_CERT_DONE = 0, /**< Compute Km: Send AKE_Send_Cert */
  169. HDCP2X_AKE_SEND_HPRIME_DONE, /**< Compute Km: Send AKE_Send_H_prime */
  170. HDCP2X_AKE_SEND_PAIRING_DONE, /**< Compute Km: Send AKE_Send_H_prime */
  171. HDCP2X_SEND_LPRIME_DONE, /**< Compute Km: Send AKE_Send_H_prime */
  172. HDCP2X_SEND_MSG_INVALID
  173. } Hdcp2xRxMsgState;
  174. /**
  175. * This typedef is the RSA private key quintuple definition.
  176. */
  177. typedef struct
  178. {
  179. UCHAR8 p[HV_HDCP_2X_RX_P_SIZE];
  180. UCHAR8 q[HV_HDCP_2X_RX_Q_SIZE];
  181. UCHAR8 dp[HV_HDCP_2X_RX_DP_SIZE];
  182. UCHAR8 dq[HV_HDCP_2X_RX_DQ_SIZE];
  183. UCHAR8 qinv[HV_HDCP_2X_RX_QINV_SIZE];
  184. } HDCP2X_RX_KPriv;
  185. /**
  186. * This typedef is the RSA public key definition.
  187. */
  188. typedef struct
  189. {
  190. UCHAR8 N[HV_HDCP_2X_RX_N_SIZE];
  191. UCHAR8 e[HV_HDCP_2X_RX_E_SIZE];
  192. } HDCP2X_RX_Kpub;
  193. /**
  194. * This typedef is the DCP public certificate definition.
  195. */
  196. typedef struct
  197. {
  198. UCHAR8 ReceiverId[HV_HDCP_2X_RECEIVER_ID_SIZE];
  199. UCHAR8 KpubRx[HV_HDCP_2X_RX_KPUB_SIZE];
  200. UCHAR8 Reserved[HV_HDCP_2X_RESERVED_SIZE];
  201. UCHAR8 Signature[HV_HDCP_2X_SIGN_SIZE];
  202. } HDCP2X_RX_Cert;
  203. /**
  204. * This typedef is the AKE_Init message definition.
  205. */
  206. typedef struct
  207. {
  208. UCHAR8 MsgId;
  209. UCHAR8 Rtx[HV_HDCP_2X_RX_RTX_SIZE];
  210. UCHAR8 TxCaps[HV_HDCP_2X_RX_TXCAPS_SIZE];
  211. } HDCP2X_RX_AKEInit;
  212. /**
  213. * This typedef is the AKE_Send_Cert message definition.
  214. */
  215. typedef struct
  216. {
  217. UCHAR8 MsgId;
  218. UCHAR8 CertRx[HV_HDCP_2X_RX_CERT_SIZE];
  219. UCHAR8 Rrx[HV_HDCP_2X_RX_RRX_SIZE];
  220. UCHAR8 RxCaps[HV_HDCP_2X_RX_RXCAPS_SIZE];
  221. } HDCP2X_RX_AKESendCert;
  222. /**
  223. * This typedef is the AKE_No_Stored_km message definition.
  224. */
  225. typedef struct
  226. {
  227. UCHAR8 MsgId;
  228. UCHAR8 EKpubKm[HV_HDCP_2X_RX_EKPUBKM_SIZE];
  229. } HDCP2X_RX_AKENoStoredKm;
  230. /**
  231. * This typedef is the AKE_Stored_km message definition.
  232. */
  233. typedef struct
  234. {
  235. UCHAR8 MsgId;
  236. UCHAR8 EKhKm[HV_HDCP_2X_RX_EKH_SIZE];
  237. UCHAR8 M[HV_HDCP_2X_RX_M_SIZE];
  238. } HDCP2X_RX_AKEStoredKm;
  239. /**
  240. * This typedef is the AKE_Send_H_prime message definition.
  241. */
  242. typedef struct
  243. {
  244. UCHAR8 MsgId;
  245. UCHAR8 HPrime[HV_HDCP_2X_RX_HPRIME_SIZE];
  246. } HDCP2X_RX_AKESendHPrime;
  247. /**
  248. * This typedef is the AKE_Send_Pairing_Info message definition.
  249. */
  250. typedef struct
  251. {
  252. UCHAR8 MsgId;
  253. UCHAR8 EKhKm[HV_HDCP_2X_RX_EKH_SIZE];
  254. } HDCP2X_RX_AKESendPairingInfo;
  255. /**
  256. * This typedef is the LC_Init message definition.
  257. */
  258. typedef struct
  259. {
  260. UCHAR8 MsgId;
  261. UCHAR8 Rn[HV_HDCP_2X_RX_RN_SIZE];
  262. } HDCP2X_RX_LCInit;
  263. /**
  264. * This typdef is the LC_Send_L_prime message definition.
  265. */
  266. typedef struct
  267. {
  268. UCHAR8 MsgId;
  269. UCHAR8 LPrime[HV_HDCP_2X_RX_LPRIME_SIZE];
  270. } HDCP2X_RX_LCSendLPrime;
  271. /**
  272. * This typedef is the SKE_Send_Eks message definition.
  273. */
  274. typedef struct
  275. {
  276. UCHAR8 MsgId;
  277. UCHAR8 EDkeyKs[HV_HDCP_2X_Rx_EDKEYKS_SIZE];
  278. UCHAR8 Riv[HV_HDCP_2X_RX_RIV_SIZE];
  279. } HDCP2X_RX_SKESendEks;
  280. /**
  281. * This typedef is the RepeaterAuth_Send_RceiverID_List message definition.
  282. */
  283. typedef struct
  284. {
  285. UCHAR8 MsgId;
  286. UCHAR8 RxInfo[HV_HDCP_2X_RX_RXINFO_SIZE];
  287. UCHAR8 SeqNumV[HV_HDCP_2X_RX_SEQNUMV_SIZE];
  288. UCHAR8 VPrime[HV_HDCP_2X_RX_VPRIME_SIZE];
  289. UCHAR8 ReceiverIdList[HV_HDCP_2X_RX_RECEIVER_ID_LIST_SIZE];
  290. } HDCP2X_RX_RepeaterAuthSendRxIdList;
  291. /**
  292. * This typedef is the RepeaterAuth_Send_Ack message definition.
  293. */
  294. typedef struct
  295. {
  296. UCHAR8 MsgId;
  297. UCHAR8 V[HV_HDCP_2X_RX_V_SIZE];
  298. } HDCP2X_RX_RepeaterAuthSendAck;
  299. /**
  300. * This typedef is the RepeaterAuth_Stream_Manage message definition.
  301. */
  302. typedef struct
  303. {
  304. UCHAR8 MsgId;
  305. UCHAR8 SeqNumM[HV_HDCP_2X_RX_SEQNUMM_SIZE];
  306. UCHAR8 K[HV_HDCP_2X_RX_K_SIZE];
  307. UCHAR8 StreamIdType[HV_HDCP_2X_RX_STREAMID_SIZE];
  308. } HDCP2X_RX_RepeaterAuthStreamManage;
  309. /**
  310. * This typedef is the RepeaterAuth_Stream_Ready message definition.
  311. */
  312. typedef struct
  313. {
  314. UCHAR8 MsgId;
  315. UCHAR8 MPrime[HV_HDCP_2X_RX_MPRIME_SIZE];
  316. } HDCP2X_RX_RepeaterAuthStreamReady;
  317. /**
  318. * This typedef is the union of all the message types.
  319. */
  320. typedef union
  321. {
  322. UCHAR8 MsgId;
  323. HDCP2X_RX_AKEInit AKEInit;
  324. HDCP2X_RX_AKESendCert AKESendCert;
  325. HDCP2X_RX_AKENoStoredKm AKENoStoredKm;
  326. HDCP2X_RX_AKEStoredKm AKEStoredKm;
  327. HDCP2X_RX_AKESendHPrime AKESendHPrime;
  328. HDCP2X_RX_AKESendPairingInfo AKESendPairingInfo;
  329. HDCP2X_RX_LCInit LCInit;
  330. HDCP2X_RX_LCSendLPrime LCSendLPrime;
  331. HDCP2X_RX_SKESendEks SKESendEks;
  332. HDCP2X_RX_RepeaterAuthSendRxIdList RepeaterAuthSendRxIdList;
  333. HDCP2X_RX_RepeaterAuthSendAck RepeaterAuthSendAck;
  334. HDCP2X_RX_RepeaterAuthStreamManage RepeaterAuthStreamManage;
  335. HDCP2X_RX_RepeaterAuthStreamReady RepeaterAuthStreamReady;
  336. } HDCP2X_RX_Msg;
  337. /**
  338. * These constants define the authentication status.
  339. */
  340. typedef enum
  341. {
  342. HV_HDCP_2X_RX_UNAUTHENTICATED, /**< Unauthenticated */
  343. HV_HDCP_2X_RX_AUTHENTICATION_BUSY, /**< Authentication Busy */
  344. HV_HDCP_2X_RX_AUTHENTICATED, /**< Authenticated */
  345. HV_HDCP_2X_RX_REAUTHENTICATE_REQUESTED /**< Reauthentication requested */
  346. } HV_HDCP_2X_RX_AuthenticationType;
  347. /************************** Function Prototypes *****************************/
  348. /* Crypto Functions */
  349. /*****************************************************************************/
  350. /**
  351. * This function is used to calculate the Montgomery NPrime. NPrime is
  352. * calculated from the following equation R*Rinv - N*NPrime == 1.
  353. * For the HDCP2.2 receiver the modulus N has a fixed size
  354. * of k = 512bits. Given k, the value R = 2^(k), and Rinv is the modular
  355. * inverse of R.
  356. *
  357. * Reference:
  358. * Analyzing and Comparing Montgomery Multiplication Algorithms
  359. * IEEE Micro, 16(3):26-33,June 1996
  360. * By: Cetin Koc, Tolga Acar, and Burton Kaliski
  361. *
  362. * @param NPrime is the calculated value and 2*NDigits in Size.
  363. * @param N is modulus
  364. * @param NDigits is the integer precision of arguments (N, NPrime), which
  365. * should always be 16 for the HDCP2.2 receiver.
  366. *
  367. * @return HV_SUCCESS or HV_FAILURE.
  368. *
  369. * @note None.
  370. ******************************************************************************/
  371. Status Hv_Engine_RxCalcMontNPrime(UCHAR8 *NPrime, const UCHAR8 *N, int NDigits);
  372. /****************************************************************************/
  373. /**
  374. * This function implements the RSAES-OAEP-Encrypt operation. The message
  375. * is encoded using EME-OAEP and then encrypted with the public key
  376. * using RSAEP.
  377. *
  378. * Reference: PKCS#1 v2.1, Section 7.1.1
  379. *
  380. * @param KpubRx is the RSA public key structure containing the 1024 bit
  381. * modulus and 24 bit public exponent.
  382. * @param Message is the octet string to be encrypted.
  383. * @param MessageLen is the length of octet string to be encrypted and
  384. * must be less than or equal to (nLen - 2*hLen - 2)
  385. * @param MaskingSeed is the random octet string seed of length hLen
  386. * used by EME-OAEP encoding function.
  387. *
  388. * @return HV_SUCCESS or HV_FAILURE.
  389. *
  390. * @note None.
  391. *****************************************************************************/
  392. Status Hv_Engine_RxRsaesOaepEncrypt(const HDCP2X_RX_Kpub *KpubRx, const UCHAR8 *Message,
  393. const UINT32 MessageLen, const UCHAR8 *MaskingSeed, UCHAR8 *EncryptedMessage);
  394. /****************************************************************************/
  395. /**
  396. * This function implements the RSAES-OAEP-Decrypt operation. The message is
  397. * decrypted using RSADP and then decoded using EME-OAEP.
  398. *
  399. * Reference: PKCS#1 v2.1, Section 7.1.2
  400. *
  401. * @param pstHdcpRxIns is a pointer to the MMULT instance.
  402. * @param KprivRx is the RSA private key structure containing the quintuple.
  403. * @param EncryptedMessage is the 128 byte octet string to be decrypted.
  404. * @param Message is the octet string after decryption.
  405. * @param MessageLen is the length of the message octet string after decryption.
  406. *
  407. * @return HV_SUCCESS or HV_FAILURE.
  408. *
  409. * @note None.
  410. *****************************************************************************/
  411. Status Hv_Engine_RxRsaesOaepDecrypt(Hdcp2xRx *pstHdcpRxIns, const HDCP2X_RX_KPriv *KprivRx,
  412. UCHAR8 *EncryptedMessage, UCHAR8 *Message, int *MessageLen);
  413. /*****************************************************************************/
  414. /**
  415. * This function computes HPrime used during HDCP 2.2 authentication and key
  416. * exchange.
  417. *
  418. * Reference: HDCP v2.2, section 2.2
  419. *
  420. * @param Rrx is the Rx random generated value.
  421. * @param RxCaps are the capabilities of the receiver.
  422. * @param Rtx is the Tx random generated value.
  423. * @param TxCaps are the capabilities of the receiver.
  424. * @param Km is the master key generated by tx.
  425. * @param HPrime is a pointer to the HPrime hash from the HDCP2.2 receiver.
  426. *
  427. * @return None.
  428. *
  429. * @note None.
  430. ******************************************************************************/
  431. VOID Hv_Engine_RxComputeHPrime(const UCHAR8* Rrx, const UCHAR8 *RxCaps, const UCHAR8* Rtx,
  432. const UCHAR8 *TxCaps, const UCHAR8 *Km, UCHAR8 *HPrime);
  433. /*****************************************************************************/
  434. /**
  435. * This function computes Ekh used during HDCP 2.2 authentication and key
  436. * exchange for pairing with receiver.
  437. *
  438. * Reference: HDCP v2.2, section 2.2.1
  439. *
  440. * @param KprivRx is the RSA private key structure containing the quintuple.
  441. * @param Km is the master key generated by tx.
  442. * @param M is constructed by concatenating Rtx || Rrx.
  443. * @param Ekh is the encrypted Km used for pairing.
  444. *
  445. * @return None.
  446. *
  447. * @note None.
  448. ******************************************************************************/
  449. VOID Hv_Engine_RxComputeEkh(const UCHAR8 *KprivRx, const UCHAR8 *Km, const UCHAR8 *M, UCHAR8 *Ekh);
  450. /*****************************************************************************/
  451. /**
  452. * This function computes LPrime used during HDCP 2.2 locality check.
  453. *
  454. * Reference: HDCP v2.2, section 2.3
  455. *
  456. * @param Rn is the 64-bit psuedo-random nonce generated by the transmitter.
  457. * @param Km is the 128-bit master key generated by tx.
  458. * @param Rrx is the 64-bit pseudo-random number generated by the receiver.
  459. * @param Rtx is the 64-bit pseudo-random number generated by the transmitter.
  460. * @param LPrime is the 256-bit value generated for locality check.
  461. *
  462. * @return None.
  463. *
  464. * @note None.
  465. ******************************************************************************/
  466. VOID Hv_Engine_RxComputeLPrime(const UCHAR8 *Rn, const UCHAR8 *Km, const UCHAR8 *Rrx, const UCHAR8 *Rtx, UCHAR8 *LPrime);
  467. /*****************************************************************************/
  468. /**
  469. * This function computes the Ks used during HDCP 2.2 session key exchange.
  470. *
  471. * Reference: HDCP v2.2, section 2.4
  472. *
  473. * @param Rrx is the Rx random generated value.
  474. * @param Rtx is the Tx random generated value.
  475. * @param Km is the master key generated by the transmitter.
  476. * @param Rn is the 64-bit psuedo-random nonce generated by the transmitter.
  477. * @param Eks is the encrypted session generated by the transmitter.
  478. * @param Ks is the decrypted session key.
  479. *
  480. * @return None.
  481. *
  482. * @note None.
  483. ******************************************************************************/
  484. VOID Hv_Engine_RxComputeKs(const UCHAR8* Rrx, const UCHAR8* Rtx, const UCHAR8 *Km, const UCHAR8 *Rn,
  485. const UCHAR8 *Eks, UCHAR8 * Ks);
  486. /*****************************************************************************/
  487. /**
  488. * This function computes VPrime used during HDCP 2.2 repeater
  489. * authentication.
  490. *
  491. * Reference: HDCP v2.2, section 2.3
  492. *
  493. * @param ReceiverIdList is a list of downstream receivers IDs in big-endian
  494. * order. Each receiver ID is 5 Bytes.
  495. * @param ReceiverIdListSize is the number of receiver Ids in ReceiverIdList.
  496. * There can be between 1 and 31 devices in the list.
  497. * @param RxInfo is the 16-bit field in the RepeaterAuth_Send_ReceiverID_List
  498. * message.
  499. * @param Km is the 128-bit master key generated by tx.
  500. * @param Rrx is the 64-bit pseudo-random number generated by the receiver.
  501. * @param Rtx is the 64-bit pseudo-random number generated by the transmitter.
  502. * @param VPrime is the 256-bit value generated for repeater authentication.
  503. *
  504. * @return None.
  505. *
  506. * @note None.
  507. ******************************************************************************/
  508. VOID Hv_Engine_RxComputeVPrime(const UCHAR8 *ReceiverIdList, UINT32 ReceiverIdListSize,
  509. const UCHAR8 *RxInfo, const UCHAR8 *SeqNumV, const UCHAR8 *Km, const UCHAR8 *Rrx,
  510. const UCHAR8 *Rtx, UCHAR8 *VPrime);
  511. /*****************************************************************************/
  512. /**
  513. * This function computes VPrime used during HDCP 2.2 repeater
  514. * authentication.
  515. *
  516. * Reference: HDCP v2.2, section 2.3
  517. *
  518. * @param StreamIdType is the 16-bit field in the RepeaterAuth_Send_ReceiverID_List
  519. * message.
  520. * @param SeqNumM is the 24-bit field in the RepeaterAuth_Stream_Manage
  521. * message.
  522. * @param Km is the 128-bit master key generated by tx.
  523. * @param Rrx is the 64-bit pseudo-random number generated by the receiver.
  524. * @param Rtx is the 64-bit pseudo-random number generated by the transmitter.
  525. * @param MPrime is the 256-bit value generated for repeater stream
  526. * management ready.
  527. *
  528. * @return None.
  529. *
  530. * @note None.
  531. ******************************************************************************/
  532. Status Hv_Engine_RxComputeMPrime(const UCHAR8 *StreamIdType, const UCHAR8 *SeqNumM,
  533. const UCHAR8 *Km, const UCHAR8 *Rrx, const UCHAR8 *Rtx, UCHAR8 *MPrime);
  534. #ifdef __cplusplus
  535. }
  536. #endif
  537. #endif /* HV_HDCP_2X_RX_H_ */
  538. /** @} */