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 <iostream> | |
8 #include <list> | 7 #include <list> |
9 | 8 |
10 #include "base/logging.h" | 9 #include "base/logging.h" |
11 #include "base/scoped_ptr.h" | 10 #include "base/scoped_ptr.h" |
12 #include "base/string_util.h" | 11 #include "base/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 { |
(...skipping 348 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
366 } | 365 } |
367 out->insert(out->end(), temp.begin(), temp.end()); | 366 out->insert(out->end(), temp.begin(), temp.end()); |
368 | 367 |
369 // Reverse output if little-endian. | 368 // Reverse output if little-endian. |
370 if (!big_endian_) | 369 if (!big_endian_) |
371 reverse(out->begin(), out->end()); | 370 reverse(out->begin(), out->end()); |
372 return true; | 371 return true; |
373 } | 372 } |
374 | 373 |
375 } // namespace base | 374 } // namespace base |
OLD | NEW |