aboutsummaryrefslogtreecommitdiff
path: root/src/stable/sha1.h
blob: 111f5fbcb231155f8f64511df33b8196ee14dc8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/*
 * Copyright (C) 2007-2023 Xagasoft, All rights reserved.
 *
 * This file is part of the libbu++ library and is released under the
 * terms of the license contained in the file LICENSE.
 */

#ifndef SHA1_H
#define SHA1_H

#include <stdint.h>
#include "bu/cryptohash.h"

namespace Bu
{
    /**
     * Calculates SHA-1 sums.  This is based strongly on code from Michael D.
     * Leonhard who released his code under the terms of the MIT license,
     * thank you!  Check out his website http://tamale.net he has a lot of
     * cool stuff there.
     */
    class Sha1 : public CryptoHash
    {
    public:
        Sha1();
        virtual ~Sha1();

        virtual void reset();
        virtual void setSalt( const Bu::String &sSalt );
        virtual void addData( const void *sData, int iSize );
        using CryptoHash::addData;
        virtual String getResult();
        virtual void writeResult( Stream &sOut );

        void update( const char* data, int num );
        unsigned char* getDigest();

        // utility methods

    private:
        static uint32_t lrot( uint32_t x, int bits );
        static void toBigEndian( uint32_t in, unsigned char* out );
        void process();
    
    private:
        uint32_t uH0, uH1, uH2, uH3, uH4;
        unsigned char uBytes[64];
        int iUnprocessedBytes;
        uint32_t uTotalBytes;
    };
};

#endif