namemap.h 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /*
  2. * Copyright 2019-2021 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. #include "internal/cryptlib.h"
  10. typedef struct ossl_namemap_st OSSL_NAMEMAP;
  11. OSSL_NAMEMAP *ossl_namemap_stored(OSSL_LIB_CTX *libctx);
  12. OSSL_NAMEMAP *ossl_namemap_new(void);
  13. void ossl_namemap_free(OSSL_NAMEMAP *namemap);
  14. int ossl_namemap_empty(OSSL_NAMEMAP *namemap);
  15. int ossl_namemap_add_name(OSSL_NAMEMAP *namemap, int number, const char *name);
  16. /*
  17. * The number<->name relationship is 1<->many
  18. * Therefore, the name->number mapping is a simple function, while the
  19. * number->name mapping is an iterator.
  20. */
  21. int ossl_namemap_name2num(const OSSL_NAMEMAP *namemap, const char *name);
  22. int ossl_namemap_name2num_n(const OSSL_NAMEMAP *namemap,
  23. const char *name, size_t name_len);
  24. const char *ossl_namemap_num2name(const OSSL_NAMEMAP *namemap, int number,
  25. size_t idx);
  26. int ossl_namemap_doall_names(const OSSL_NAMEMAP *namemap, int number,
  27. void (*fn)(const char *name, void *data),
  28. void *data);
  29. /*
  30. * A utility that handles several names in a string, divided by a given
  31. * separator.
  32. */
  33. int ossl_namemap_add_names(OSSL_NAMEMAP *namemap, int number,
  34. const char *names, const char separator);