hv_drv_Hdcp1xRx.h 1011 B

1234567891011121314151617181920212223242526272829303132333435
  1. /*****************************************************************************/
  2. /**
  3. * @file hal_hdcp1x_rx.h
  4. * @{
  5. * @details
  6. *
  7. * This is the main header file for the Hiview HDCP 2.2 Receiver device
  8. * driver. The HDCP 2.2 Receiver driver implements the authentication
  9. * state machine.
  10. *
  11. *****************************************************************************/
  12. #ifndef HV_DRV_HDCP1X_RX_H /* prevent circular inclusions */
  13. #define HV_DRV_HDCP1X_RX_H /* by using protection macros */
  14. #ifdef __cplusplus
  15. extern "C"
  16. {
  17. #endif
  18. /***************************** Include Files ********************************/
  19. #include "hv_vos_Comm.h"
  20. #include "hv_comm_DataType.h"
  21. #include "hv_comm_Define.h"
  22. void Hv_Engine_RxCalcKm(UCHAR8 * aksv,UINT32 * Km, UCHAR8 ucPortIndex);
  23. void Hv_Engine_RxBlockCipher(UCHAR8 *An,UINT32 *Km, UCHAR8 Repeater,UINT32 *Ks,UINT32 *M0,USHORT16 *R0, UCHAR8 ucPortIndex);
  24. #ifdef __cplusplus
  25. }
  26. #endif
  27. #endif /* HS_HAL_HDCP1X_RX_H_ */
  28. /** @} */