~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/algorithm/sha1.h

Merge Stewart's dead code removal

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Copyright (C) 2010 nobody (this is public domain)
3
 
 */
4
 
 
5
 
/**
6
 
 * @file
7
 
 * @brief SHA1 Declarations
8
 
 */
9
 
 
10
 
#ifndef DRIZZLED_ALGORITHM_SHA1_H
11
 
#define DRIZZLED_ALGORITHM_SHA1_H
12
 
 
13
 
#include <stdint.h>
14
 
#include <sys/types.h>
15
 
#include <string.h>
16
 
 
17
 
#include "drizzled/visibility.h"
18
 
 
19
 
namespace drizzled
20
 
{
21
 
 
22
 
/**
23
 
 * @addtogroup sha1 SHA-1 in C
24
 
 * 
25
 
 * This file is based on public domain code.
26
 
 * Initial source code is in the public domain, 
27
 
 * so clarified by Steve Reid <steve@edmweb.com>
28
 
 *
29
 
 * @{
30
 
 */
31
 
 
32
 
#define SHA1_BLOCK_LENGTH               64
33
 
#define SHA1_DIGEST_LENGTH              20
34
 
#define SHA1_DIGEST_STRING_LENGTH       (SHA1_DIGEST_LENGTH * 2 + 1)
35
 
 
36
 
typedef class sha1_ctx{
37
 
public:
38
 
    uint32_t state[5];
39
 
    uint64_t count;
40
 
    uint8_t buffer[SHA1_BLOCK_LENGTH];
41
 
 
42
 
    sha1_ctx():
43
 
        count(0)
44
 
    {
45
 
      memset(state, 0, 5);
46
 
      memset(buffer, 0, SHA1_BLOCK_LENGTH);
47
 
    }
48
 
} SHA1_CTX;
49
 
 
50
 
DRIZZLED_API void SHA1Init(SHA1_CTX *);
51
 
DRIZZLED_API void SHA1Pad(SHA1_CTX *);
52
 
DRIZZLED_API void SHA1Transform(uint32_t [5], const uint8_t [SHA1_BLOCK_LENGTH]);
53
 
DRIZZLED_API void SHA1Update(SHA1_CTX *, const uint8_t *, size_t);
54
 
DRIZZLED_API void SHA1Final(uint8_t [SHA1_DIGEST_LENGTH], SHA1_CTX *);
55
 
 
56
 
/** @} */
57
 
 
58
 
} /* namespace drizzled */
59
 
 
60
 
#endif /* DRIZZLED_ALGORITHM_SHA1_H */