]> git.ipfire.org Git - thirdparty/openssl.git/blame - include/internal/namemap.h
Replumbing: make it possible for providers to specify multiple names
[thirdparty/openssl.git] / include / internal / namemap.h
CommitLineData
f2182a4e
RL
1/*
2 * Copyright 2019 The OpenSSL Project Authors. All Rights Reserved.
3 *
4 * Licensed under the Apache License 2.0 (the "License"). You may not use
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
8 */
9
10#include "internal/cryptlib.h"
11
12typedef struct ossl_namemap_st OSSL_NAMEMAP;
13
14OSSL_NAMEMAP *ossl_namemap_stored(OPENSSL_CTX *libctx);
15
16OSSL_NAMEMAP *ossl_namemap_new(void);
17void ossl_namemap_free(OSSL_NAMEMAP *namemap);
18
651d4418 19int ossl_namemap_add(OSSL_NAMEMAP *namemap, int number, const char *name);
695d195b
RL
20int ossl_namemap_add_n(OSSL_NAMEMAP *namemap, int number,
21 const char *name, size_t name_len);
651d4418
RL
22
23/*
24 * The number<->name relationship is 1<->many
25 * Therefore, the name->number mapping is a simple function, while the
26 * number->name mapping is an iterator.
27 */
28int ossl_namemap_name2num(const OSSL_NAMEMAP *namemap, const char *name);
695d195b
RL
29int ossl_namemap_name2num_n(const OSSL_NAMEMAP *namemap,
30 const char *name, size_t name_len);
f7c16d48
RL
31const char *ossl_namemap_num2name(const OSSL_NAMEMAP *namemap, int number,
32 size_t idx);
651d4418
RL
33void ossl_namemap_doall_names(const OSSL_NAMEMAP *namemap, int number,
34 void (*fn)(const char *name, void *data),
35 void *data);