~ubuntu-branches/debian/sid/pam-pgsql/sid

« back to all changes in this revision

Viewing changes to src/sha1.c

  • Committer: Bazaar Package Importer
  • Author(s): Jan Dittberner
  • Date: 2010-04-02 12:51:17 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20100402125117-0f7wvllksz1wlxe3
Tags: 0.7.1-1
* New upstream version
* disable debian/patches/ftbfs_544686.patch, upstream restructured
  configure.ac and it does not apply anymore
* debian/rules:
  - update configure call and make install call to match new upstream build
    system
  - remove sample.sql and CHANGELOG from installed files to let
    dh_installchangelogs and dh_installexamples do their jobs
* debian/control: update Standards-Version to 3.8.4 (no changes needed)

Show diffs side-by-side

added added

removed removed

Lines of Context:
48
48
                ((word) >> (32-(bits))))
49
49
 
50
50
/* Function prototypes */
51
 
void SHA1ProcessMessageBlock(SHA1Context *);
52
 
void SHA1PadMessage(SHA1Context *);
 
51
static void SHA1ProcessMessageBlock(SHA1Context *);
 
52
static void SHA1PadMessage(SHA1Context *);
53
53
 
54
54
/*  
55
55
 *  SHA1Reset
204
204
 *         
205
205
 *
206
206
 */
207
 
void SHA1ProcessMessageBlock(SHA1Context *context)
 
207
static void SHA1ProcessMessageBlock(SHA1Context *context)
208
208
{
209
209
    const unsigned K[] =            /* Constants defined in SHA-1   */      
210
210
    {
323
323
 *  Comments:
324
324
 *
325
325
 */
326
 
void SHA1PadMessage(SHA1Context *context)
 
326
static void SHA1PadMessage(SHA1Context *context)
327
327
{
328
328
    /*
329
329
     *  Check to see if the current message block is too small to hold