Merge from widevine repo of http://go/wvgerrit/21684 This CL adds provisioning 3.0 functionality to the OEMCrypto reference implementation. Change-Id: I60c1fd88f246d443e0ae59ad56862c2ea9d95445
15 lines
338 B
C
15 lines
338 B
C
// This header is used to access the OEM certificate if one is in use.
|
|
#ifndef OEM_CERT_H_
|
|
#define OEM_CERT_H_
|
|
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
extern const uint8_t kOEMPrivateKey[];
|
|
extern const size_t kOEMPrivateKeySize;
|
|
|
|
extern const uint8_t kOEMPublicCert[];
|
|
extern const size_t kOEMPublicCertSize;
|
|
|
|
#endif // OEM_CERT_H_
|