| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "content/common/ssl_status_serialization.h" | 5 #include "content/common/ssl_status_serialization.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "base/pickle.h" | 8 #include "base/pickle.h" |
| 9 | 9 |
| 10 namespace content { | 10 namespace content { |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 // The following are not applicable and are set to the default values. | 46 // The following are not applicable and are set to the default values. |
| 47 *cert_status = 0; | 47 *cert_status = 0; |
| 48 *security_bits = -1; | 48 *security_bits = -1; |
| 49 *ssl_connection_status = 0; | 49 *ssl_connection_status = 0; |
| 50 signed_certificate_timestamp_ids->clear(); | 50 signed_certificate_timestamp_ids->clear(); |
| 51 return false; | 51 return false; |
| 52 } | 52 } |
| 53 | 53 |
| 54 Pickle pickle(state.data(), static_cast<int>(state.size())); | 54 Pickle pickle(state.data(), static_cast<int>(state.size())); |
| 55 PickleIterator iter(pickle); | 55 PickleIterator iter(pickle); |
| 56 bool pickle_read_ok = pickle.ReadInt(&iter, cert_id) && | 56 int num_scts_to_read; |
| 57 pickle.ReadUInt32(&iter, cert_status) && | 57 if (!pickle.ReadInt(&iter, cert_id) || |
| 58 pickle.ReadInt(&iter, security_bits) && | 58 !pickle.ReadUInt32(&iter, cert_status) || |
| 59 pickle.ReadInt(&iter, ssl_connection_status); | 59 !pickle.ReadInt(&iter, security_bits) || |
| 60 if (!pickle_read_ok) | 60 !pickle.ReadInt(&iter, ssl_connection_status) || |
| 61 return pickle_read_ok; | 61 !pickle.ReadInt(&iter, &num_scts_to_read)) |
| 62 return false; |
| 62 | 63 |
| 63 int num_scts_to_read; | 64 for (; num_scts_to_read > 0; --num_scts_to_read) { |
| 64 pickle_read_ok = pickle.ReadInt(&iter, &num_scts_to_read); | 65 int id; |
| 65 int id; | 66 uint16 status; |
| 66 uint16 status; | 67 if (!pickle.ReadInt(&iter, &id) || |
| 67 for (; pickle_read_ok && num_scts_to_read > 0; --num_scts_to_read) { | 68 !pickle.ReadUInt16(&iter, &status)) |
| 68 pickle_read_ok = pickle.ReadInt(&iter, &id) && | 69 return false; |
| 69 pickle.ReadUInt16(&iter, &status); | 70 signed_certificate_timestamp_ids->push_back( |
| 70 if (pickle_read_ok) { | 71 SignedCertificateTimestampIDAndStatus( |
| 71 signed_certificate_timestamp_ids->push_back( | 72 id, |
| 72 SignedCertificateTimestampIDAndStatus( | 73 static_cast<net::ct::SCTVerifyStatus>(status))); |
| 73 id, | |
| 74 static_cast<net::ct::SCTVerifyStatus>(status))); | |
| 75 } | |
| 76 } | 74 } |
| 77 | 75 |
| 78 return pickle_read_ok; | 76 return true; |
| 79 } | 77 } |
| 80 | 78 |
| 81 } // namespace content | 79 } // namespace content |
| OLD | NEW |