summaryrefslogtreecommitdiffstats
blob: 3cc69b0fa4f820fe2e988bf0ea6df78e2a92c90b (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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
/*
 * Copyright (c) 2013-2018 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */

#include <Swiften/Crypto/CommonCryptoCryptoProvider.h>

#include <cassert>

#include <boost/numeric/conversion/cast.hpp>

#include <CommonCrypto/CommonDigest.h>
#include <CommonCrypto/CommonHMAC.h>

#include <Swiften/Base/ByteArray.h>
#include <Swiften/Crypto/Hash.h>

using namespace Swift;

namespace {
    class SHA1Hash : public Hash {
        public:
            SHA1Hash() : finalized(false) {
                if (!CC_SHA1_Init(&context)) {
                    assert(false);
                }
            }

            virtual ~SHA1Hash() override {
            }

            virtual Hash& update(const ByteArray& data) override {
                return updateInternal(data);
            }

            virtual Hash& update(const SafeByteArray& data) override {
                return updateInternal(data);
            }

            virtual std::vector<unsigned char> getHash() override {
                assert(!finalized);
                std::vector<unsigned char> result(CC_SHA1_DIGEST_LENGTH);
                CC_SHA1_Final(vecptr(result), &context);
                return result;
            }

        private:
            template<typename ContainerType>
            Hash& updateInternal(const ContainerType& data) {
                assert(!finalized);
                try {
                    if (!CC_SHA1_Update(&context, vecptr(data), boost::numeric_cast<CC_LONG>(data.size()))) {
                        assert(false);
                    }
                }
                catch (const boost::numeric::bad_numeric_cast&) {
                    assert(false);
                }
                return *this;
            }

        private:
            CC_SHA1_CTX context;
            bool finalized;
    };

    class MD5Hash : public Hash {
        public:
            MD5Hash() : finalized(false) {
                if (!CC_MD5_Init(&context)) {
                    assert(false);
                }
            }

            virtual ~MD5Hash() override {
            }

            virtual Hash& update(const ByteArray& data) override {
                return updateInternal(data);
            }

            virtual Hash& update(const SafeByteArray& data) override {
                return updateInternal(data);
            }

            virtual std::vector<unsigned char> getHash() override {
                assert(!finalized);
                std::vector<unsigned char> result(CC_MD5_DIGEST_LENGTH);
                CC_MD5_Final(vecptr(result), &context);
                return result;
            }

        private:
            template<typename ContainerType>
            Hash& updateInternal(const ContainerType& data) {
                assert(!finalized);
                try {
                    if (!CC_MD5_Update(&context, vecptr(data), boost::numeric_cast<CC_LONG>(data.size()))) {
                        assert(false);
                    }
                }
                catch (const boost::numeric::bad_numeric_cast&) {
                    assert(false);
                }
                return *this;
            }

        private:
            CC_MD5_CTX context;
            bool finalized;
    };

    template<typename T>
    ByteArray getHMACSHA1Internal(const T& key, const ByteArray& data) {
        std::vector<unsigned char> result(CC_SHA1_DIGEST_LENGTH);
        try {
            CCHmac(kCCHmacAlgSHA1, vecptr(key), key.size(), vecptr(data), boost::numeric_cast<CC_LONG>(data.size()), vecptr(result));
        }
        catch (const boost::numeric::bad_numeric_cast&) {
            assert(false);
        }
        return result;
    }
}

CommonCryptoCryptoProvider::CommonCryptoCryptoProvider() {
}

CommonCryptoCryptoProvider::~CommonCryptoCryptoProvider() {
}

Hash* CommonCryptoCryptoProvider::createSHA1() {
    return new SHA1Hash();
}

Hash* CommonCryptoCryptoProvider::createMD5() {
    return new MD5Hash();
}

ByteArray CommonCryptoCryptoProvider::getHMACSHA1(const SafeByteArray& key, const ByteArray& data) {
    return getHMACSHA1Internal(key, data);
}

ByteArray CommonCryptoCryptoProvider::getHMACSHA1(const ByteArray& key, const ByteArray& data) {
    return getHMACSHA1Internal(key, data);
}

bool CommonCryptoCryptoProvider::isMD5AllowedForCrypto() const {
    return true;
}