Merge from Widevine repo of http://go/wvgerrit/41662 This CL updates oemcrypto unit tests to use the new test keybox. bug: 69552641 Update OEMCrypto_LoadTestKeybox test: Unit tests compile and run -- many tests won't pass until merged with vendor code Change-Id: I73bdca3958b2c985d4c61801aa95807a2e6d4299
41 lines
1.1 KiB
C++
41 lines
1.1 KiB
C++
#include <assert.h>
|
|
#include <algorithm>
|
|
#include <iostream>
|
|
#include <openssl/aes.h>
|
|
#include <openssl/rand.h>
|
|
|
|
#include "oec_session_util.h"
|
|
#include "oec_test_data.h"
|
|
#include "OEMCryptoCENC.h"
|
|
|
|
namespace wvoec {
|
|
|
|
class SessionUtil {
|
|
public:
|
|
SessionUtil()
|
|
: encoded_rsa_key_(kTestRSAPKCS8PrivateKeyInfo2_2048,
|
|
kTestRSAPKCS8PrivateKeyInfo2_2048 +
|
|
sizeof(kTestRSAPKCS8PrivateKeyInfo2_2048)) {}
|
|
|
|
// If force is true, we assert that the key loads successfully.
|
|
void CreateWrappedRSAKeyFromKeybox(uint32_t allowed_schemes, bool force);
|
|
|
|
// If force is true, we assert that the key loads successfully.
|
|
void CreateWrappedRSAKeyFromOEMCert(uint32_t allowed_schemes, bool force);
|
|
|
|
// If force is true, we assert that the key loads successfully.
|
|
void CreateWrappedRSAKey(uint32_t allowed_schemes, bool force);
|
|
|
|
void InstallKeybox(const wvoec_mock::WidevineKeybox& keybox, bool good);
|
|
|
|
void EnsureTestKeys();
|
|
|
|
void InstallTestSessionKeys(Session* s);
|
|
|
|
std::vector<uint8_t> encoded_rsa_key_;
|
|
std::vector<uint8_t> wrapped_rsa_key_;
|
|
wvoec_mock::WidevineKeybox keybox_;
|
|
};
|
|
|
|
} // namespace wvoec
|