Update copyright year
[openssl.git] / crypto / property / property_local.h
1 /*
2  * Copyright 2019-2020 The OpenSSL Project Authors. All Rights Reserved.
3  * Copyright (c) 2019, Oracle and/or its affiliates.  All rights reserved.
4  *
5  * Licensed under the Apache License 2.0 (the "License").  You may not use
6  * this file except in compliance with the License.  You can obtain a copy
7  * in the file LICENSE in the source distribution or at
8  * https://www.openssl.org/source/license.html
9  */
10
11 #include <openssl/crypto.h>
12 #include "internal/property.h"
13
14 typedef int OSSL_PROPERTY_IDX;
15
16 /* Property string functions */
17 OSSL_PROPERTY_IDX ossl_property_name(OPENSSL_CTX *ctx, const char *s,
18                                      int create);
19 OSSL_PROPERTY_IDX ossl_property_value(OPENSSL_CTX *ctx, const char *s,
20                                       int create);
21
22 /* Property list functions */
23 void ossl_property_free(OSSL_PROPERTY_LIST *p);
24 int ossl_property_has_optional(const OSSL_PROPERTY_LIST *query);
25
26 /* Property definition cache functions */
27 OSSL_PROPERTY_LIST *ossl_prop_defn_get(OPENSSL_CTX *ctx, const char *prop);
28 int ossl_prop_defn_set(OPENSSL_CTX *ctx, const char *prop,
29                        OSSL_PROPERTY_LIST *pl);
30
31 /* Property cache lock / unlock */
32 int ossl_property_write_lock(OSSL_METHOD_STORE *);
33 int ossl_property_read_lock(OSSL_METHOD_STORE *);
34 int ossl_property_unlock(OSSL_METHOD_STORE *);
35