| 1 | /* |
|---|---|
| 2 | * Copyright 2019 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 | OSSL_PROPERTY_LIST *ossl_property_merge(const OSSL_PROPERTY_LIST *a, |
| 26 | const OSSL_PROPERTY_LIST *b); |
| 27 | |
| 28 | /* Property definition cache functions */ |
| 29 | OSSL_PROPERTY_LIST *ossl_prop_defn_get(OPENSSL_CTX *ctx, const char *prop); |
| 30 | int ossl_prop_defn_set(OPENSSL_CTX *ctx, const char *prop, |
| 31 | OSSL_PROPERTY_LIST *pl); |
| 32 | |
| 33 | /* Property cache lock / unlock */ |
| 34 | int ossl_property_write_lock(OSSL_METHOD_STORE *); |
| 35 | int ossl_property_read_lock(OSSL_METHOD_STORE *); |
| 36 | int ossl_property_unlock(OSSL_METHOD_STORE *); |
| 37 | |
| 38 |