In order to match the other implementations of CDM, we are going to replace the android OEMCrypto mockup with the one in the cdm repository. This would be disruptive to the clear key library because it relies on the current implementation of the mockup. In order to prevent that, I am moving the current mockup into the same directory as the clear key library. Then, we can put the new mockup under the directory libwvdrmengine. This mockup will then be deleted when the clear key library is deleted. Change-Id: I89ee23f249dacd18241ae5ca499329e620bf5a2c
17 lines
412 B
C
17 lines
412 B
C
/*********************************************************************
|
|
* wvcrc32.h
|
|
*
|
|
* (c) Copyright 2011-2012 Google, Inc.
|
|
*
|
|
* Compte CRC32 Checksum. Needed for verification of WV Keybox.
|
|
*********************************************************************/
|
|
|
|
#ifndef WV_CRC_32_H_
|
|
#define WV_CRC_32_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
uint32_t wvcrc32(uint8_t* p_begin, int i_count);
|
|
|
|
#endif // WV_MOCK_OEMCRYPTO_H_
|