22 lines
460 B
C++
22 lines
460 B
C++
// Copyright 2017 Google Inc. All Rights Reserved.
|
|
|
|
// TEST ONLY: "built-in" RSA keys.
|
|
|
|
#ifndef TEST_AUTH_RSA_KEY_H_
|
|
#define TEST_AUTH_RSA_KEY_H_
|
|
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
namespace wvcdm_test_auth {
|
|
|
|
extern const uint8_t* kRsaPrivateKey_2048;
|
|
extern const size_t kRsaPrivateKeySize_2048;
|
|
|
|
extern const uint8_t* kRsaPrivateKey_3072;
|
|
extern const size_t kRsaPrivateKeySize_3072;
|
|
|
|
} // namespace wvcdm_test_auth
|
|
|
|
#endif // TEST_AUTH_RSA_KEY_H_
|