| 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 #include "crypto/rsa_private_key.h" | 5 #include "crypto/rsa_private_key.h" |
| 6 | 6 |
| 7 #include <openssl/bn.h> | 7 #include <openssl/bn.h> |
| 8 #include <openssl/bytestring.h> | 8 #include <openssl/bytestring.h> |
| 9 #include <openssl/evp.h> | 9 #include <openssl/evp.h> |
| 10 #include <openssl/mem.h> | 10 #include <openssl/mem.h> |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 !EVP_marshal_public_key(cbb.get(), key_) || | 108 !EVP_marshal_public_key(cbb.get(), key_) || |
| 109 !CBB_finish(cbb.get(), &der, &der_len)) { | 109 !CBB_finish(cbb.get(), &der, &der_len)) { |
| 110 return false; | 110 return false; |
| 111 } | 111 } |
| 112 output->assign(der, der + der_len); | 112 output->assign(der, der + der_len); |
| 113 OPENSSL_free(der); | 113 OPENSSL_free(der); |
| 114 return true; | 114 return true; |
| 115 } | 115 } |
| 116 | 116 |
| 117 } // namespace crypto | 117 } // namespace crypto |
| OLD | NEW |