| // Copyright 2017 The BoringSSL Authors |
| // |
| // Licensed under the Apache License, Version 2.0 (the "License"); |
| // you may not use this file except in compliance with the License. |
| // You may obtain a copy of the License at |
| // |
| // https://www.apache.org/licenses/LICENSE-2.0 |
| // |
| // Unless required by applicable law or agreed to in writing, software |
| // distributed under the License is distributed on an "AS IS" BASIS, |
| // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| // See the License for the specific language governing permissions and |
| // limitations under the License. |
| |
| #include <openssl/bytestring.h> |
| |
| #include <errno.h> |
| #include <stdio.h> |
| #include <string.h> |
| |
| #include <algorithm> |
| #include <vector> |
| |
| #include <openssl/bio.h> |
| #include <openssl/pem.h> |
| |
| #include "internal.h" |
| |
| BSSL_NAMESPACE_BEGIN |
| |
| bool ReadAll(std::vector<uint8_t> *out, FILE *file) { |
| out->clear(); |
| |
| constexpr size_t kMaxSize = 1024 * 1024; |
| size_t len = 0; |
| out->resize(128); |
| |
| for (;;) { |
| len += fread(out->data() + len, 1, out->size() - len, file); |
| |
| if (feof(file)) { |
| out->resize(len); |
| return true; |
| } |
| if (ferror(file)) { |
| return false; |
| } |
| |
| if (len == out->size()) { |
| if (out->size() == kMaxSize) { |
| fprintf(stderr, "Input too large.\n"); |
| return false; |
| } |
| size_t cap = std::min(out->size() * 2, kMaxSize); |
| out->resize(cap); |
| } |
| } |
| } |
| |
| bool WriteToFile(const std::string &path, bssl::Span<const uint8_t> in) { |
| ScopedFILE file(fopen(path.c_str(), "wb")); |
| if (!file) { |
| fprintf(stderr, "Failed to open '%s': %s\n", path.c_str(), strerror(errno)); |
| return false; |
| } |
| if (fwrite(in.data(), in.size(), 1, file.get()) != 1) { |
| fprintf(stderr, "Failed to write to '%s': %s\n", path.c_str(), |
| strerror(errno)); |
| return false; |
| } |
| return true; |
| } |
| |
| UniquePtr<EVP_PKEY> LoadPrivateKeyFile(const std::string &file) { |
| UniquePtr<BIO> bio(BIO_new(BIO_s_file())); |
| if (!bio || !BIO_read_filename(bio.get(), file.c_str())) { |
| return nullptr; |
| } |
| return UniquePtr<EVP_PKEY>( |
| PEM_read_bio_PrivateKey(bio.get(), nullptr, nullptr, nullptr)); |
| } |
| |
| BSSL_NAMESPACE_END |