| OLD | NEW |
| 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 <list> | 8 #include <list> |
| 8 | 9 |
| 9 #include "base/logging.h" | 10 #include "base/logging.h" |
| 10 #include "base/scoped_ptr.h" | 11 #include "base/scoped_ptr.h" |
| 11 #include "base/string_util.h" | 12 #include "base/string_util.h" |
| 12 | 13 |
| 13 // This file manually encodes and decodes RSA private keys using PrivateKeyInfo | 14 // This file manually encodes and decodes RSA private keys using PrivateKeyInfo |
| 14 // from PKCS #8 and RSAPrivateKey from PKCS #1. These structures are: | 15 // from PKCS #8 and RSAPrivateKey from PKCS #1. These structures are: |
| 15 // | 16 // |
| 16 // PrivateKeyInfo ::= SEQUENCE { | 17 // PrivateKeyInfo ::= SEQUENCE { |
| (...skipping 353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 370 // The version should be zero. | 371 // The version should be zero. |
| 371 for (uint32 i = 0; i < length; ++i) { | 372 for (uint32 i = 0; i < length; ++i) { |
| 372 READ_ASSERT(**pos == 0x00); | 373 READ_ASSERT(**pos == 0x00); |
| 373 (*pos)++; | 374 (*pos)++; |
| 374 } | 375 } |
| 375 | 376 |
| 376 return true; | 377 return true; |
| 377 } | 378 } |
| 378 | 379 |
| 379 } // namespace base | 380 } // namespace base |
| OLD | NEW |