2016-05-18 02:52:22 +08:00
|
|
|
/*
|
|
|
|
* Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
|
1998-12-21 18:52:47 +08:00
|
|
|
*
|
2018-12-06 21:00:36 +08:00
|
|
|
* Licensed under the Apache License 2.0 (the "License"). You may not use
|
2016-05-18 02:52:22 +08:00
|
|
|
* 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 18:52:47 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2015-05-14 22:56:48 +08:00
|
|
|
#include "internal/cryptlib.h"
|
1999-04-24 06:13:45 +08:00
|
|
|
#include <openssl/crypto.h>
|
|
|
|
#include <openssl/x509.h>
|
1998-12-21 18:52:47 +08:00
|
|
|
|
1999-04-20 05:31:43 +08:00
|
|
|
int X509_STORE_set_default_paths(X509_STORE *ctx)
|
2015-01-22 11:40:55 +08:00
|
|
|
{
|
|
|
|
X509_LOOKUP *lookup;
|
|
|
|
|
|
|
|
lookup = X509_STORE_add_lookup(ctx, X509_LOOKUP_file());
|
|
|
|
if (lookup == NULL)
|
2017-10-17 22:04:09 +08:00
|
|
|
return 0;
|
2015-01-22 11:40:55 +08:00
|
|
|
X509_LOOKUP_load_file(lookup, NULL, X509_FILETYPE_DEFAULT);
|
1998-12-21 18:52:47 +08:00
|
|
|
|
2015-01-22 11:40:55 +08:00
|
|
|
lookup = X509_STORE_add_lookup(ctx, X509_LOOKUP_hash_dir());
|
|
|
|
if (lookup == NULL)
|
2017-10-17 22:04:09 +08:00
|
|
|
return 0;
|
2015-01-22 11:40:55 +08:00
|
|
|
X509_LOOKUP_add_dir(lookup, NULL, X509_FILETYPE_DEFAULT);
|
1998-12-21 18:52:47 +08:00
|
|
|
|
2019-03-07 06:34:19 +08:00
|
|
|
lookup = X509_STORE_add_lookup(ctx, X509_LOOKUP_store());
|
|
|
|
if (lookup == NULL)
|
|
|
|
return 0;
|
|
|
|
X509_LOOKUP_add_store(lookup, NULL);
|
|
|
|
|
2015-01-22 11:40:55 +08:00
|
|
|
/* clear any errors */
|
|
|
|
ERR_clear_error();
|
1998-12-21 18:52:47 +08:00
|
|
|
|
2017-10-09 19:05:58 +08:00
|
|
|
return 1;
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
1998-12-21 18:52:47 +08:00
|
|
|
|
2019-03-07 06:34:19 +08:00
|
|
|
int X509_STORE_load_file(X509_STORE *ctx, const char *file)
|
|
|
|
{
|
|
|
|
X509_LOOKUP *lookup;
|
|
|
|
|
|
|
|
if (file == NULL
|
|
|
|
|| (lookup = X509_STORE_add_lookup(ctx, X509_LOOKUP_file())) == NULL
|
|
|
|
|| X509_LOOKUP_load_file(lookup, file, X509_FILETYPE_PEM) == 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int X509_STORE_load_path(X509_STORE *ctx, const char *path)
|
2015-01-22 11:40:55 +08:00
|
|
|
{
|
|
|
|
X509_LOOKUP *lookup;
|
1998-12-21 18:52:47 +08:00
|
|
|
|
2019-03-07 06:34:19 +08:00
|
|
|
if (path == NULL
|
|
|
|
|| (lookup = X509_STORE_add_lookup(ctx, X509_LOOKUP_hash_dir())) == NULL
|
|
|
|
|| X509_LOOKUP_add_dir(lookup, path, X509_FILETYPE_PEM) == 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int X509_STORE_load_store(X509_STORE *ctx, const char *uri)
|
|
|
|
{
|
|
|
|
X509_LOOKUP *lookup;
|
|
|
|
|
|
|
|
if (uri == NULL
|
|
|
|
|| (lookup = X509_STORE_add_lookup(ctx, X509_LOOKUP_store())) == NULL
|
|
|
|
|| X509_LOOKUP_add_store(lookup, uri) == 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int X509_STORE_load_locations(X509_STORE *ctx, const char *file,
|
|
|
|
const char *path)
|
|
|
|
{
|
|
|
|
if (file == NULL && path == NULL)
|
|
|
|
return 0;
|
|
|
|
if (file != NULL && !X509_STORE_load_file(ctx, file))
|
|
|
|
return 0;
|
|
|
|
if (path != NULL && !X509_STORE_load_path(ctx, path))
|
2017-10-17 22:04:09 +08:00
|
|
|
return 0;
|
2017-10-09 19:05:58 +08:00
|
|
|
return 1;
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|