OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 // This utility can dump the contents of CRL set, optionally augmented with a | 5 // This utility can dump the contents of CRL set, optionally augmented with a |
6 // delta CRL set. | 6 // delta CRL set. |
7 | 7 |
8 #include <errno.h> | 8 #include <errno.h> |
9 #include <stdio.h> | 9 #include <stdio.h> |
10 #include <stdlib.h> | 10 #include <stdlib.h> |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 if (!crl_set->ApplyDelta(delta_bytes, &final_crl_set)) { | 55 if (!crl_set->ApplyDelta(delta_bytes, &final_crl_set)) { |
56 fprintf(stderr, "Failed to apply delta to CRLSet\n"); | 56 fprintf(stderr, "Failed to apply delta to CRLSet\n"); |
57 return 1; | 57 return 1; |
58 } | 58 } |
59 } else { | 59 } else { |
60 final_crl_set = crl_set; | 60 final_crl_set = crl_set; |
61 } | 61 } |
62 | 62 |
63 if (!output_filename.empty()) { | 63 if (!output_filename.empty()) { |
64 const std::string out = final_crl_set->Serialize(); | 64 const std::string out = final_crl_set->Serialize(); |
65 if (file_util::WriteFile(output_filename, out.data(), | 65 if (base::WriteFile(output_filename, out.data(), out.size()) == -1) { |
66 out.size()) == -1) { | |
67 fprintf(stderr, "Failed to write resulting CRL set\n"); | 66 fprintf(stderr, "Failed to write resulting CRL set\n"); |
68 return 1; | 67 return 1; |
69 } | 68 } |
70 } | 69 } |
71 | 70 |
72 const net::CRLSet::CRLList& crls = final_crl_set->crls(); | 71 const net::CRLSet::CRLList& crls = final_crl_set->crls(); |
73 for (net::CRLSet::CRLList::const_iterator i = crls.begin(); i != crls.end(); | 72 for (net::CRLSet::CRLList::const_iterator i = crls.begin(); i != crls.end(); |
74 i++) { | 73 i++) { |
75 printf("%s\n", base::HexEncode(i->first.data(), i->first.size()).c_str()); | 74 printf("%s\n", base::HexEncode(i->first.data(), i->first.size()).c_str()); |
76 for (std::vector<std::string>::const_iterator j = i->second.begin(); | 75 for (std::vector<std::string>::const_iterator j = i->second.begin(); |
77 j != i->second.end(); j++) { | 76 j != i->second.end(); j++) { |
78 printf(" %s\n", base::HexEncode(j->data(), j->size()).c_str()); | 77 printf(" %s\n", base::HexEncode(j->data(), j->size()).c_str()); |
79 } | 78 } |
80 } | 79 } |
81 | 80 |
82 return 0; | 81 return 0; |
83 } | 82 } |
OLD | NEW |