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

Side by Side Diff: base/crypto/rsa_private_key.cc

Issue 6714032: Move some files in base to base/memory. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: only base Created 9 years, 9 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 "base/crypto/rsa_private_key.h" 5 #include "base/crypto/rsa_private_key.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <list> 8 #include <list>
9 9
10 #include "base/logging.h" 10 #include "base/logging.h"
11 #include "base/scoped_ptr.h" 11 #include "base/memory/scoped_ptr.h"
12 #include "base/string_util.h" 12 #include "base/string_util.h"
13 13
14 // This file manually encodes and decodes RSA private keys using PrivateKeyInfo 14 // This file manually encodes and decodes RSA private keys using PrivateKeyInfo
15 // from PKCS #8 and RSAPrivateKey from PKCS #1. These structures are: 15 // from PKCS #8 and RSAPrivateKey from PKCS #1. These structures are:
16 // 16 //
17 // PrivateKeyInfo ::= SEQUENCE { 17 // PrivateKeyInfo ::= SEQUENCE {
18 // version Version, 18 // version Version,
19 // privateKeyAlgorithm PrivateKeyAlgorithmIdentifier, 19 // privateKeyAlgorithm PrivateKeyAlgorithmIdentifier,
20 // privateKey PrivateKey, 20 // privateKey PrivateKey,
21 // attributes [0] IMPLICIT Attributes OPTIONAL 21 // attributes [0] IMPLICIT Attributes OPTIONAL
(...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after
381 // The version should be zero. 381 // The version should be zero.
382 for (uint32 i = 0; i < length; ++i) { 382 for (uint32 i = 0; i < length; ++i) {
383 READ_ASSERT(**pos == 0x00); 383 READ_ASSERT(**pos == 0x00);
384 (*pos)++; 384 (*pos)++;
385 } 385 }
386 386
387 return true; 387 return true;
388 } 388 }
389 389
390 } // namespace base 390 } // namespace base
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698