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

« back to all changes in this revision

Viewing changes to crypto/dsa/dsa_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:
80
80
#include <openssl/rand.h>
81
81
#include <openssl/sha.h>
82
82
 
 
83
#ifndef OPENSSL_FIPS
83
84
DSA *DSA_generate_parameters(int bits,
84
85
                unsigned char *seed_in, int seed_len,
85
86
                int *counter_ret, unsigned long *h_ret,
293
294
        if (mont != NULL) BN_MONT_CTX_free(mont);
294
295
        return(ok?ret:NULL);
295
296
        }
296
 
#endif
 
297
#endif /* ndef OPENSSL_FIPS */
 
298
#endif /* ndef OPENSSL_NO_SHA */
 
299