28 lines
716 B
C++
28 lines
716 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* kTestRSAPKCS8PrivateKeyInfo2_2048;
|
|
extern const size_t kTestRSAPKCS8PrivateKeyInfo2_2048_Size;
|
|
|
|
extern const uint8_t* kTestRSAPKCS8PrivateKeyInfo3_3072;
|
|
extern const size_t kTestRSAPKCS8PrivateKeyInfo3_3072_Size;
|
|
|
|
extern const uint8_t* kTestKeyRSACarmichael_2048;
|
|
extern const size_t kTestKeyRSACarmichael_2048_Size;
|
|
|
|
extern const uint8_t* kTestKeyRSAEuler_2048;
|
|
extern const size_t kTestKeyRSAEuler_2048_Size;
|
|
|
|
} // namespace wvcdm_test_auth
|
|
|
|
#endif // TEST_AUTH_RSA_KEY_H_
|