2
0

DSA_get_ex_new_index.pod 837 B

123456789101112131415161718192021222324252627282930313233343536
  1. =pod
  2. =head1 NAME
  3. DSA_get_ex_new_index, DSA_set_ex_data, DSA_get_ex_data - add application specific data to DSA structures
  4. =head1 SYNOPSIS
  5. #include <openssl/DSA.h>
  6. int DSA_get_ex_new_index(long argl, void *argp,
  7. CRYPTO_EX_new *new_func,
  8. CRYPTO_EX_dup *dup_func,
  9. CRYPTO_EX_free *free_func);
  10. int DSA_set_ex_data(DSA *d, int idx, void *arg);
  11. char *DSA_get_ex_data(DSA *d, int idx);
  12. =head1 DESCRIPTION
  13. These functions handle application specific data in DSA
  14. structures. Their usage is identical to that of
  15. RSA_get_ex_new_index(), RSA_set_ex_data() and RSA_get_ex_data()
  16. as described in L<RSA_get_ex_new_index(3)>.
  17. =head1 SEE ALSO
  18. L<RSA_get_ex_new_index(3)|RSA_get_ex_new_index(3)>, L<dsa(3)|dsa(3)>
  19. =head1 HISTORY
  20. DSA_get_ex_new_index(), DSA_set_ex_data() and DSA_get_ex_data() are
  21. available since OpenSSL 0.9.5.
  22. =cut