]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/x509/x509_def.c
Update copyright year
[thirdparty/openssl.git] / crypto / x509 / x509_def.c
CommitLineData
b1322259
RS
1/*
2 * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
d02b48c6 3 *
3e4b43b9 4 * Licensed under the Apache License 2.0 (the "License"). You may not use
b1322259
RS
5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
7 * https://www.openssl.org/source/license.html
d02b48c6
RE
8 */
9
10#include <stdio.h>
b39fc560 11#include "internal/cryptlib.h"
ec577822
BM
12#include <openssl/crypto.h>
13#include <openssl/x509.h>
d02b48c6 14
6b691a5c 15const char *X509_get_default_private_dir(void)
0f113f3e 16{
26a7d938 17 return X509_PRIVATE_DIR;
0f113f3e
MC
18}
19
6b691a5c 20const char *X509_get_default_cert_area(void)
0f113f3e 21{
26a7d938 22 return X509_CERT_AREA;
0f113f3e 23}
d02b48c6 24
6b691a5c 25const char *X509_get_default_cert_dir(void)
0f113f3e 26{
26a7d938 27 return X509_CERT_DIR;
0f113f3e 28}
d02b48c6 29
6b691a5c 30const char *X509_get_default_cert_file(void)
0f113f3e 31{
26a7d938 32 return X509_CERT_FILE;
0f113f3e 33}
d02b48c6 34
6b691a5c 35const char *X509_get_default_cert_dir_env(void)
0f113f3e 36{
26a7d938 37 return X509_CERT_DIR_EVP;
0f113f3e 38}
d02b48c6 39
6b691a5c 40const char *X509_get_default_cert_file_env(void)
0f113f3e 41{
26a7d938 42 return X509_CERT_FILE_EVP;
0f113f3e 43}