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 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345
|
// Copyright (C) 2010-2014 David Sugar, Tycho Softworks.
// Copyright (C) 2015-2020 Cherokees of Idaho.
//
// This file is part of GNU uCommon C++.
//
// GNU uCommon C++ is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published
// by the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// GNU uCommon C++ is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with GNU uCommon C++. If not, see <http://www.gnu.org/licenses/>.
#include "local.h"
/*
Copyright (C) 2012 Werner Dittmann
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
* In addition, as a special exception, the copyright holders give
* permission to link the code of portions of this program with the
* OpenSSL library under certain conditions as described in each
* individual source file, and distribute linked combinations
* including the two.
* You must obey the GNU General Public License in all respects
* for all of the code used other than OpenSSL. If you modify
* file(s) with this exception, you may extend this exception to your
* version of the file(s), but you are not obligated to do so. If you
* do not wish to do so, delete this exception statement from your
* version. If you delete this exception statement from all source
* files in the program, then also delete it here.
*/
/*
* Authors: Werner Dittmann
*/
#include <stdint.h>
#include <string.h>
#include <stdio.h>
typedef struct _hmacSha256Context {
sha256_ctx ctx;
sha256_ctx innerCtx;
sha256_ctx outerCtx;
} hmacSha256Context;
static int32_t hmacSha256Init(hmacSha256Context *ctx, const uint8_t *key, uint32_t kLength)
{
int32_t i;
uint8_t localPad[SHA256_BLOCK_SIZE] = {0};
uint8_t localKey[SHA256_BLOCK_SIZE] = {0};
if (key == NULL)
return 0;
memset(ctx, 0, sizeof(hmacSha256Context));
/* check key length and reduce it if necessary */
if (kLength > SHA256_BLOCK_SIZE) {
sha256_begin(&ctx->ctx);
sha256_hash(key, kLength, &ctx->ctx);
sha256_end(localKey, &ctx->ctx);
}
else {
memcpy(localKey, key, kLength);
}
/* prepare inner hash and hold the context */
for (i = 0; i < SHA256_BLOCK_SIZE; i++)
localPad[i] = localKey[i] ^ 0x36;
sha256_begin(&ctx->innerCtx);
sha256_hash(localPad, SHA256_BLOCK_SIZE, &ctx->innerCtx);
/* prepare outer hash and hold the context */
for (i = 0; i < SHA256_BLOCK_SIZE; i++)
localPad[i] = localKey[i] ^ 0x5c;
sha256_begin(&ctx->outerCtx);
sha256_hash(localPad, SHA256_BLOCK_SIZE, &ctx->outerCtx);
/* copy prepared inner hash to work hash - ready to process data */
memcpy(&ctx->ctx, &ctx->innerCtx, sizeof(sha256_ctx));
memset(localKey, 0, sizeof(localKey));
return 1;
}
static void hmacSha256Update(hmacSha256Context *ctx, const uint8_t *data, uint32_t dLength)
{
/* hash new data to work hash context */
sha256_hash(data, dLength, &ctx->ctx);
}
static void hmacSha256Final(hmacSha256Context *ctx, uint8_t *mac)
{
uint8_t tmpDigest[SHA256_DIGEST_SIZE];
/* finalize work hash context */
sha256_end(tmpDigest, &ctx->ctx);
/* copy prepared outer hash to work hash */
memcpy(&ctx->ctx, &ctx->outerCtx, sizeof(sha256_ctx));
/* hash inner digest to work (outer) hash context */
sha256_hash(tmpDigest, SHA256_DIGEST_SIZE, &ctx->ctx);
/* finalize work hash context to get the hmac*/
sha256_end(mac, &ctx->ctx);
}
/*
Copyright (C) 2012 Werner Dittmann
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
* In addition, as a special exception, the copyright holders give
* permission to link the code of portions of this program with the
* OpenSSL library under certain conditions as described in each
* individual source file, and distribute linked combinations
* including the two.
* You must obey the GNU General Public License in all respects
* for all of the code used other than OpenSSL. If you modify
* file(s) with this exception, you may extend this exception to your
* version of the file(s), but you are not obligated to do so. If you
* do not wish to do so, delete this exception statement from your
* version. If you delete this exception statement from all source
* files in the program, then also delete it here.
*/
/*
* Authors: Werner Dittmann
*/
#include <stdint.h>
#include <string.h>
#include <stdio.h>
typedef struct _hmacSha384Context {
sha384_ctx ctx;
sha384_ctx innerCtx;
sha384_ctx outerCtx;
} hmacSha384Context;
static int32_t hmacSha384Init(hmacSha384Context *ctx, const uint8_t *key, uint32_t kLength)
{
int32_t i;
uint8_t localPad[SHA384_BLOCK_SIZE] = {0};
uint8_t localKey[SHA384_BLOCK_SIZE] = {0};
if (key == NULL)
return 0;
memset(ctx, 0, sizeof(hmacSha384Context));
/* check key length and reduce it if necessary */
if (kLength > SHA384_BLOCK_SIZE) {
sha384_begin(&ctx->ctx);
sha384_hash(key, kLength, &ctx->ctx);
sha384_end(localKey, &ctx->ctx);
}
else {
memcpy(localKey, key, kLength);
}
/* prepare inner hash and hold the context */
for (i = 0; i < SHA384_BLOCK_SIZE; i++)
localPad[i] = localKey[i] ^ 0x36;
sha384_begin(&ctx->innerCtx);
sha384_hash(localPad, SHA384_BLOCK_SIZE, &ctx->innerCtx);
/* prepare outer hash and hold the context */
for (i = 0; i < SHA384_BLOCK_SIZE; i++)
localPad[i] = localKey[i] ^ 0x5c;
sha384_begin(&ctx->outerCtx);
sha384_hash(localPad, SHA384_BLOCK_SIZE, &ctx->outerCtx);
/* copy prepared inner hash to work hash - ready to process data */
memcpy(&ctx->ctx, &ctx->innerCtx, sizeof(sha384_ctx));
memset(localKey, 0, sizeof(localKey));
return 1;
}
static void hmacSha384Update(hmacSha384Context *ctx, const uint8_t *data, uint32_t dLength)
{
/* hash new data to work hash context */
sha384_hash(data, dLength, &ctx->ctx);
}
static void hmacSha384Final(hmacSha384Context *ctx, uint8_t *mac)
{
uint8_t tmpDigest[SHA384_DIGEST_SIZE];
/* finalize work hash context */
sha384_end(tmpDigest, &ctx->ctx);
/* copy prepared outer hash to work hash */
memcpy(&ctx->ctx, &ctx->outerCtx, sizeof(sha384_ctx));
/* hash inner digest to work (outer) hash context */
sha384_hash(tmpDigest, SHA384_DIGEST_SIZE, &ctx->ctx);
/* finalize work hash context to get the hmac*/
sha384_end(mac, &ctx->ctx);
}
// start of our interfaces...
namespace ucommon {
bool HMAC::has(const char *id)
{
if(eq_case(id, "sha256"))
return true;
if(eq_case(id, "sha384"))
return true;
return false;
}
void HMAC::set(const char *digest, const secure::keybytes& key)
{
release();
size_t len = key.size() / 8;
if(!len)
return;
if(eq_case(digest, "sha256")) {
hmactype = "2";
context = new hmacSha256Context;
hmacSha256Init((hmacSha256Context*)context, (const uint8_t *)*key, len);
}
else if(eq_case(digest, "sha384")) {
hmactype = "3";
context = new hmacSha384Context;
hmacSha384Init((hmacSha384Context*)context, (const uint8_t *)*key, len);
}
}
void HMAC::release(void)
{
if(context && hmactype) {
switch(*((char *)hmactype)) {
case '2':
memset(context, 0, sizeof(hmacSha256Context));
delete (hmacSha256Context *)context;
break;
case '3':
memset(context, 0, sizeof(hmacSha384Context));
delete (hmacSha384Context *)context;
break;
default:
break;
}
}
bufsize = 0;
textbuf[0] = 0;
hmactype = NULL;
context = NULL;
}
bool HMAC::put(const void *address, size_t size)
{
if(!context || !hmactype)
return false;
switch(*((char *)hmactype)) {
case '2':
hmacSha256Update((hmacSha256Context*)context, (const uint8_t *)address, size);
return true;
case '3':
hmacSha384Update((hmacSha384Context*)context, (const uint8_t *)address, size);
return true;
default:
return false;
}
}
const uint8_t *HMAC::get(void)
{
if(bufsize)
return buffer;
if(!context || !hmactype)
return NULL;
switch(*((char *)hmactype)) {
case '2':
hmacSha256Final((hmacSha256Context *)context, buffer);
bufsize = SHA256_BLOCK_SIZE;
break;
case '3':
hmacSha384Final((hmacSha384Context *)context, buffer);
bufsize = SHA384_BLOCK_SIZE;
break;
default:
return NULL;
}
size_t count = 0;
while(count < bufsize) {
snprintf(textbuf + (count * 2), 3, "%2.2x", buffer[count]);
++count;
}
return buffer;
}
} // namespace ucommon
|