Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1034)

Side by Side Diff: crypto/rsa_private_key.cc

Issue 1414503004: crypto: Remove duplicated list include from rsa_private_key.cc. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 #include "crypto/rsa_private_key.h" 5 #include "crypto/rsa_private_key.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <list>
9 8
10 #include "base/logging.h" 9 #include "base/logging.h"
11 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
12 #include "base/strings/string_util.h" 11 #include "base/strings/string_util.h"
13 12
14 // This file manually encodes and decodes RSA private keys using PrivateKeyInfo 13 // This file manually encodes and decodes RSA private keys using PrivateKeyInfo
15 // from PKCS #8 and RSAPrivateKey from PKCS #1. These structures are: 14 // from PKCS #8 and RSAPrivateKey from PKCS #1. These structures are:
16 // 15 //
17 // PrivateKeyInfo ::= SEQUENCE { 16 // PrivateKeyInfo ::= SEQUENCE {
18 // version Version, 17 // version Version,
(...skipping 356 matching lines...) Expand 10 before | Expand all | Expand 10 after
375 // The version should be zero. 374 // The version should be zero.
376 for (uint32 i = 0; i < length; ++i) { 375 for (uint32 i = 0; i < length; ++i) {
377 READ_ASSERT(**pos == 0x00); 376 READ_ASSERT(**pos == 0x00);
378 (*pos)++; 377 (*pos)++;
379 } 378 }
380 379
381 return true; 380 return true;
382 } 381 }
383 382
384 } // namespace crypto 383 } // namespace crypto
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698