Index: net/ssl/client_cert_store_impl_unittest.cc |
diff --git a/net/ssl/client_cert_store_impl_unittest.cc b/net/ssl/client_cert_store_impl_unittest.cc |
index 1c4512dbe2b5f39be2df2de0db967fd05db149bc..893eb388076b1cfe02fa60de03caff7e612a42ee 100644 |
--- a/net/ssl/client_cert_store_impl_unittest.cc |
+++ b/net/ssl/client_cert_store_impl_unittest.cc |
@@ -18,18 +18,16 @@ namespace net { |
namespace { |
-// "CN=Client Auth Test Root 1" - DER encoded DN of the issuer of client_1.pem. |
+// "CN=B CA" - DER encoded DN of the issuer of client_1.pem |
const unsigned char kAuthority1DN[] = { |
- 0x30, 0x22, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, |
- 0x17, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x20, 0x41, 0x75, 0x74, 0x68, |
- 0x20, 0x54, 0x65, 0x73, 0x74, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x31 |
+ 0x30, 0x0f, 0x31, 0x0d, 0x30, 0x0b, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, |
+ 0x04, 0x42, 0x20, 0x43, 0x41 |
}; |
-// "CN=Client Auth Test Root 2" - DER encoded DN of the issuer of client_2.pem. |
+// "CN=E CA" - DER encoded DN of the issuer of client_2.pem |
unsigned char kAuthority2DN[] = { |
- 0x30, 0x22, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, |
- 0x17, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x20, 0x41, 0x75, 0x74, 0x68, |
- 0x20, 0x54, 0x65, 0x73, 0x74, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x32 |
+ 0x30, 0x0f, 0x31, 0x0d, 0x30, 0x0b, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, |
+ 0x04, 0x45, 0x20, 0x43, 0x41 |
}; |
} // namespace |