summaryrefslogtreecommitdiffstats
path: root/doc/crypto/RSA_get_ex_new_index.pod
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>2000-01-11 22:35:21 +0000
committerUlf Möller <ulf@openssl.org>2000-01-11 22:35:21 +0000
commit2186cd8ef1c4db86109af7a38182c2bd9ddbbb32 (patch)
tree407efa98f1a4fe9b118651f06c57e85d6d0139e5 /doc/crypto/RSA_get_ex_new_index.pod
parentde73e397f86c578ee514816ca1a312689a89686f (diff)
Document the RSA library.
Diffstat (limited to 'doc/crypto/RSA_get_ex_new_index.pod')
-rw-r--r--doc/crypto/RSA_get_ex_new_index.pod34
1 files changed, 34 insertions, 0 deletions
diff --git a/doc/crypto/RSA_get_ex_new_index.pod b/doc/crypto/RSA_get_ex_new_index.pod
new file mode 100644
index 0000000000..2afcc20401
--- /dev/null
+++ b/doc/crypto/RSA_get_ex_new_index.pod
@@ -0,0 +1,34 @@
+=pod
+
+=head1 NAME
+
+RSA_get_ex_new_index, RSA_set_ex_data, RSA_get_ex_data - ...
+
+=head1 SYNOPSIS
+
+ #include <openssl/rsa.h>
+
+ int RSA_get_ex_new_index(long argl, char *argp, int (*new_func)(),
+ int (*dup_func)(), void (*free_func)());
+
+ int RSA_set_ex_data(RSA *r,int idx,char *arg);
+
+ char *RSA_get_ex_data(RSA *r, int idx);
+
+=head1 DESCRIPTION
+
+...
+
+=head1 RETURN VALUES
+
+...
+
+=head1 SEE ALSO
+
+...
+
+=head1 HISTORY
+
+...
+
+=cut