EVP_KEYEXCH_free.pod 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. =pod
  2. =head1 NAME
  3. EVP_KEYEXCH_fetch, EVP_KEYEXCH_free, EVP_KEYEXCH_up_ref, EVP_KEYEXCH_provider,
  4. EVP_KEYEXCH_is_a, EVP_KEYEXCH_do_all_provided,
  5. EVP_KEYEXCH_number, EVP_KEYEXCH_names_do_all
  6. - Functions to manage EVP_KEYEXCH algorithm objects
  7. =head1 SYNOPSIS
  8. #include <openssl/evp.h>
  9. EVP_KEYEXCH *EVP_KEYEXCH_fetch(OPENSSL_CTX *ctx, const char *algorithm,
  10. const char *properties);
  11. void EVP_KEYEXCH_free(EVP_KEYEXCH *exchange);
  12. int EVP_KEYEXCH_up_ref(EVP_KEYEXCH *exchange);
  13. OSSL_PROVIDER *EVP_KEYEXCH_provider(const EVP_KEYEXCH *exchange);
  14. int EVP_KEYEXCH_is_a(const EVP_KEYEXCH *exchange, const char *name);
  15. int EVP_KEYEXCH_number(const EVP_KEYEXCH *exchange);
  16. void EVP_KEYEXCH_do_all_provided(OPENSSL_CTX *libctx,
  17. void (*fn)(EVP_KEYEXCH *exchange, void *arg),
  18. void *arg);
  19. void EVP_KEYEXCH_names_do_all(const EVP_KEYEXCH *exchange,
  20. void (*fn)(const char *name, void *data),
  21. void *data);
  22. =head1 DESCRIPTION
  23. EVP_KEYEXCH_fetch() fetches the key exchange implementation for the given
  24. I<algorithm> from any provider offering it, within the criteria given
  25. by the I<properties>.
  26. See L<provider(7)/Fetching algorithms> for further information.
  27. The returned value must eventually be freed with EVP_KEYEXCH_free().
  28. EVP_KEYEXCH_free() decrements the reference count for the B<EVP_KEYEXCH>
  29. structure. Typically this structure will have been obtained from an earlier call
  30. to EVP_KEYEXCH_fetch(). If the reference count drops to 0 then the
  31. structure is freed.
  32. EVP_KEYEXCH_up_ref() increments the reference count for an B<EVP_KEYEXCH>
  33. structure.
  34. EVP_KEYEXCH_provider() returns the provider that I<exchange> was fetched from.
  35. EVP_KEYEXCH_is_a() checks if I<exchange> is an implementation of an
  36. algorithm that's identifiable with I<name>.
  37. EVP_KEYEXCH_number() returns the internal dynamic number assigned to
  38. the I<exchange>.
  39. EVP_KEYEXCH_names_do_all() traverses all names for the I<exchange>, and
  40. calls I<fn> with each name and I<data>.
  41. EVP_KEYEXCH_do_all_provided() traverses all key exchange implementations by
  42. all activated providers in the library context I<libctx>, and for each
  43. of the implementations, calls I<fn> with the implementation method and
  44. I<data> as arguments.
  45. =head1 RETURN VALUES
  46. EVP_KEYEXCH_fetch() returns a pointer to a B<EVP_KEYEXCH> for success
  47. or NULL for failure.
  48. EVP_KEYEXCH_up_ref() returns 1 for success or 0 otherwise.
  49. EVP_KEYEXCH_is_a() returns 1 of I<exchange> was identifiable,
  50. otherwise 0.
  51. EVP_KEYEXCH_number() returns an integer.
  52. =head1 SEE ALSO
  53. L<provider(7)/Fetching algorithms>, L<OSSL_PROVIDER(3)>
  54. =head1 HISTORY
  55. The functions described here were added in OpenSSL 3.0.
  56. =head1 COPYRIGHT
  57. Copyright 2019 The OpenSSL Project Authors. All Rights Reserved.
  58. Licensed under the Apache License 2.0 (the "License"). You may not use
  59. this file except in compliance with the License. You can obtain a copy
  60. in the file LICENSE in the source distribution or at
  61. L<https://www.openssl.org/source/license.html>.
  62. =cut