~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/algorithm/sha1.cc

  • Committer: Brian Aker
  • Date: 2011-02-22 06:12:02 UTC
  • mfrom: (2190.1.6 drizzle-build)
  • Revision ID: brian@tangent.org-20110222061202-k03czxykqy4x9hjs
List update, header fixes, multiple symbols, and David deletes some code.

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
 
10
10
/*
11
11
 * SHA-1 in C
12
 
 * By Steve Reid <steve@edmweb.com>
13
 
 * 100% Public Domain
 
12
 * 
 
13
 * This file is based on public domain code.
 
14
 * Initial source code is in the public domain, 
 
15
 * so clarified by Steve Reid <steve@edmweb.com>
14
16
 *
15
17
 * Test Vectors (from FIPS PUB 180-1)
16
18
 * "abc"
21
23
 *   34AA973C D4C4DAA4 F61EEB2B DBAD2731 6534016F
22
24
 */
23
25
 
24
 
#include "config.h"
 
26
#include <config.h>
25
27
#include "sha1.h"
26
28
#include <string.h>
27
29