// Copyright 2014 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 #include #include #include #include #include #include #include #include #include #if defined(OPENSSL_WINDOWS) #include #else #include #endif #include #include #include #include #include #include "../crypto/internal.h" #include "internal.h" static const struct argument kArguments[] = { { "-dump", kOptionalArgument, "Dump the key and contents of the given file to stdout", }, { "", kOptionalArgument, "", }, }; bool DoPKCS12(const std::vector &args) { std::map args_map; if (!ParseKeyValueArguments(&args_map, args, kArguments) || args_map["-dump"].empty()) { PrintUsage(kArguments); return false; } ScopedFD fd = OpenFD(args_map["-dump"].c_str(), O_RDONLY); if (!fd) { perror("open"); return false; } struct stat st; if (fstat(fd.get(), &st)) { perror("fstat"); return false; } const size_t size = st.st_size; auto contents = std::make_unique(size); size_t off = 0; while (off < size) { size_t bytes_read; if (!ReadFromFD(fd.get(), &bytes_read, contents.get() + off, size - off)) { perror("read"); return false; } if (bytes_read == 0) { fprintf(stderr, "Unexpected EOF\n"); return false; } off += bytes_read; } printf("Enter password: "); fflush(stdout); char password[256]; off = 0; while (off < sizeof(password) - 1) { size_t bytes_read; if (!ReadFromFD(0, &bytes_read, password + off, sizeof(password) - 1 - off)) { perror("read"); return false; } off += bytes_read; if (bytes_read == 0 || OPENSSL_memchr(password, '\n', off) != nullptr) { break; } } char *newline = reinterpret_cast(OPENSSL_memchr(password, '\n', off)); if (newline == NULL) { return false; } *newline = 0; CBS pkcs12; CBS_init(&pkcs12, contents.get(), size); EVP_PKEY *key; bssl::UniquePtr certs(sk_X509_new_null()); if (!PKCS12_get_key_and_certs(&key, certs.get(), &pkcs12, password)) { fprintf(stderr, "Failed to parse PKCS#12 data:\n"); ERR_print_errors_fp(stderr); return false; } bssl::UniquePtr key_owned(key); if (key != NULL) { PEM_write_PrivateKey(stdout, key, NULL, NULL, 0, NULL, NULL); } for (size_t i = 0; i < sk_X509_num(certs.get()); i++) { PEM_write_X509(stdout, sk_X509_value(certs.get(), i)); } return true; }