2016-05-17 18:52:22 +00:00
|
|
|
/*
|
|
|
|
* Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
|
1998-12-21 10:52:47 +00:00
|
|
|
*
|
2016-05-17 18:52:22 +00:00
|
|
|
* Licensed under the OpenSSL license (the "License"). You may not use
|
|
|
|
* this file except in compliance with the License. You can obtain a copy
|
|
|
|
* in the file LICENSE in the source distribution or at
|
|
|
|
* https://www.openssl.org/source/license.html
|
1998-12-21 10:52:47 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2015-05-14 14:56:48 +00:00
|
|
|
#include "internal/cryptlib.h"
|
1999-04-23 22:13:45 +00:00
|
|
|
#include <openssl/crypto.h>
|
|
|
|
#include <openssl/x509.h>
|
1998-12-21 10:52:47 +00:00
|
|
|
|
1999-04-19 21:31:43 +00:00
|
|
|
int X509_STORE_set_default_paths(X509_STORE *ctx)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
|
|
|
X509_LOOKUP *lookup;
|
|
|
|
|
|
|
|
lookup = X509_STORE_add_lookup(ctx, X509_LOOKUP_file());
|
|
|
|
if (lookup == NULL)
|
2017-10-17 14:04:09 +00:00
|
|
|
return 0;
|
2015-01-22 03:40:55 +00:00
|
|
|
X509_LOOKUP_load_file(lookup, NULL, X509_FILETYPE_DEFAULT);
|
1998-12-21 10:52:47 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
lookup = X509_STORE_add_lookup(ctx, X509_LOOKUP_hash_dir());
|
|
|
|
if (lookup == NULL)
|
2017-10-17 14:04:09 +00:00
|
|
|
return 0;
|
2015-01-22 03:40:55 +00:00
|
|
|
X509_LOOKUP_add_dir(lookup, NULL, X509_FILETYPE_DEFAULT);
|
1998-12-21 10:52:47 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
/* clear any errors */
|
|
|
|
ERR_clear_error();
|
1998-12-21 10:52:47 +00:00
|
|
|
|
2017-10-09 11:05:58 +00:00
|
|
|
return 1;
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|
1998-12-21 10:52:47 +00:00
|
|
|
|
1999-05-09 10:12:10 +00:00
|
|
|
int X509_STORE_load_locations(X509_STORE *ctx, const char *file,
|
2015-01-22 03:40:55 +00:00
|
|
|
const char *path)
|
|
|
|
{
|
|
|
|
X509_LOOKUP *lookup;
|
1998-12-21 10:52:47 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
if (file != NULL) {
|
|
|
|
lookup = X509_STORE_add_lookup(ctx, X509_LOOKUP_file());
|
|
|
|
if (lookup == NULL)
|
2017-10-17 14:04:09 +00:00
|
|
|
return 0;
|
2015-01-22 03:40:55 +00:00
|
|
|
if (X509_LOOKUP_load_file(lookup, file, X509_FILETYPE_PEM) != 1)
|
2017-10-17 14:04:09 +00:00
|
|
|
return 0;
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|
|
|
|
if (path != NULL) {
|
|
|
|
lookup = X509_STORE_add_lookup(ctx, X509_LOOKUP_hash_dir());
|
|
|
|
if (lookup == NULL)
|
2017-10-17 14:04:09 +00:00
|
|
|
return 0;
|
2015-01-22 03:40:55 +00:00
|
|
|
if (X509_LOOKUP_add_dir(lookup, path, X509_FILETYPE_PEM) != 1)
|
2017-10-17 14:04:09 +00:00
|
|
|
return 0;
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|
|
|
|
if ((path == NULL) && (file == NULL))
|
2017-10-17 14:04:09 +00:00
|
|
|
return 0;
|
2017-10-09 11:05:58 +00:00
|
|
|
return 1;
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|