~ubuntu-branches/ubuntu/maverick/openssl/maverick

« back to all changes in this revision

Viewing changes to crypto/dh/dh_gen.c

  • Committer: Bazaar Package Importer
  • Author(s): Christoph Martin
  • Date: 2004-12-16 18:41:29 UTC
  • mto: (11.1.1 lenny)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20041216184129-z7xjkul57mh1jiha
Tags: upstream-0.9.7e
ImportĀ upstreamĀ versionĀ 0.9.7e

Show diffs side-by-side

added added

removed removed

Lines of Context:
86
86
 * It's just as OK (and in some sense better) to use a generator of the
87
87
 * order-q subgroup.
88
88
 */
 
89
 
 
90
#ifndef OPENSSL_FIPS
 
91
 
89
92
DH *DH_generate_parameters(int prime_len, int generator,
90
93
             void (*callback)(int,int,void *), void *cb_arg)
91
94
        {
167
170
                }
168
171
        return(ret);
169
172
        }
 
173
 
 
174
#endif