Index: components/policy/core/common/cloud/policy_builder.h |
diff --git a/components/policy/core/common/cloud/policy_builder.h b/components/policy/core/common/cloud/policy_builder.h |
index 20114c6fc7f307bfc344697299be618299c185e6..ae223f6b30f4b96abca855065e3550aade496592 100644 |
--- a/components/policy/core/common/cloud/policy_builder.h |
+++ b/components/policy/core/common/cloud/policy_builder.h |
@@ -89,6 +89,9 @@ class PolicyBuilder { |
static std::string GetTestSigningKeySignature(); |
static std::string GetTestOtherSigningKeySignature(); |
+ std::vector<uint8> raw_signing_key() { return raw_signing_key_; } |
+ std::vector<uint8> raw_new_signing_key() { return raw_new_signing_key_; } |
+ |
private: |
// Produces |key|'s signature over |data| and stores it in |signature|. |
void SignData(const std::string& data, |
@@ -107,6 +110,7 @@ class PolicyBuilder { |
// temporary RSAPrivateKey is created. |
std::vector<uint8> raw_signing_key_; |
std::vector<uint8> raw_new_signing_key_; |
+ std::string raw_new_signing_key_signature_; |
DISALLOW_COPY_AND_ASSIGN(PolicyBuilder); |
}; |