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

« back to all changes in this revision

Viewing changes to crypto/sha/sha1dgst.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:
62
62
#define SHA_1
63
63
 
64
64
#include <openssl/opensslv.h>
 
65
#include <openssl/opensslconf.h>
65
66
 
 
67
#ifndef OPENSSL_FIPS
66
68
const char *SHA1_version="SHA1" OPENSSL_VERSION_PTEXT;
67
69
 
68
70
/* The implementation is in ../md32_common.h */
69
71
 
70
72
#include "sha_locl.h"
71
73
 
 
74
#else /* ndef OPENSSL_FIPS */
 
75
 
 
76
static void *dummy=&dummy;
 
77
 
 
78
#endif /* ndef OPENSSL_FIPS */
 
79
 
72
80
#endif
73
81