~ubuntu-branches/ubuntu/gutsy/openssl/gutsy-security

« back to all changes in this revision

Viewing changes to doc/crypto/RSA_get_ex_new_index.pod

  • Committer: Bazaar Package Importer
  • Author(s): Kurt Roeckx
  • Date: 2007-03-10 17:11:46 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20070310171146-ekahy2avht7qdc4f
Tags: 0.9.8e-4
openssl should depend on libssl0.9.8 0.9.8e-1 since it 
uses some of the defines that changed to functions.
Other things build against libssl or libcrypto shouldn't 
have this problem since they use the old headers.
(Closes: #414283)

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 
18
18
 void *RSA_get_ex_data(RSA *r, int idx);
19
19
 
20
 
 typedef int new_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad,
21
 
                int idx, long argl, void *argp);
22
 
 typedef void free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad,
23
 
                int idx, long argl, void *argp);
24
 
 typedef int dup_func(CRYPTO_EX_DATA *to, CRYPTO_EX_DATA *from, void *from_d, 
25
 
                int idx, long argl, void *argp);
 
20
 typedef int CRYPTO_EX_new(void *parent, void *ptr, CRYPTO_EX_DATA *ad,
 
21
                           int idx, long argl, void *argp);
 
22
 typedef void CRYPTO_EX_free(void *parent, void *ptr, CRYPTO_EX_DATA *ad,
 
23
                             int idx, long argl, void *argp);
 
24
 typedef int CRYPTO_EX_dup(CRYPTO_EX_DATA *to, CRYPTO_EX_DATA *from, void *from_d,
 
25
                           int idx, long argl, void *argp);
26
26
 
27
27
=head1 DESCRIPTION
28
28