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

« back to all changes in this revision

Viewing changes to crypto/dsa/dsa_ossl.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:
65
65
#include <openssl/rand.h>
66
66
#include <openssl/asn1.h>
67
67
 
 
68
#ifndef OPENSSL_FIPS
68
69
static DSA_SIG *dsa_do_sign(const unsigned char *dgst, int dlen, DSA *dsa);
69
70
static int dsa_sign_setup(DSA *dsa, BN_CTX *ctx_in, BIGNUM **kinvp, BIGNUM **rp);
70
71
static int dsa_do_verify(const unsigned char *dgst, int dgst_len, DSA_SIG *sig,
346
347
{
347
348
        return BN_mod_exp_mont(r, a, p, m, ctx, m_ctx);
348
349
}
 
350
#endif