| // Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved. |
| // |
| // 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/x509.h> |
| |
| // TODO(fork): cleanup |
| |
| #if defined(OPENSSL_FUCHSIA) |
| #define OPENSSLDIR "/config/ssl" |
| #else |
| #define OPENSSLDIR "/etc/ssl" |
| #endif |
| |
| #define X509_CERT_AREA OPENSSLDIR |
| #define X509_CERT_DIR OPENSSLDIR "/certs" |
| #define X509_CERT_FILE OPENSSLDIR "/cert.pem" |
| #define X509_PRIVATE_DIR OPENSSLDIR "/private" |
| #define X509_CERT_DIR_EVP "SSL_CERT_DIR" |
| #define X509_CERT_FILE_EVP "SSL_CERT_FILE" |
| |
| const char *X509_get_default_private_dir(void) { return X509_PRIVATE_DIR; } |
| |
| const char *X509_get_default_cert_area(void) { return X509_CERT_AREA; } |
| |
| const char *X509_get_default_cert_dir(void) { return X509_CERT_DIR; } |
| |
| const char *X509_get_default_cert_file(void) { return X509_CERT_FILE; } |
| |
| const char *X509_get_default_cert_dir_env(void) { return X509_CERT_DIR_EVP; } |
| |
| const char *X509_get_default_cert_file_env(void) { |
| return X509_CERT_FILE_EVP; |
| } |