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
|
/** @file
A brief file description
@section license License
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#include <string.h>
#include <stdio.h>
#include "ts/ink_code.h"
#include "ts/INK_MD5.h"
#include "ts/ink_assert.h"
#include "ts/INK_MD5.h"
ats::CryptoHash const ats::CRYPTO_HASH_ZERO; // default constructed is correct.
MD5Context::MD5Context()
{
MD5_Init(&_ctx);
}
bool
MD5Context::update(void const *data, int length)
{
return 0 != MD5_Update(&_ctx, data, length);
}
bool
MD5Context::finalize(CryptoHash &hash)
{
return 0 != MD5_Final(hash.u8, &_ctx);
}
/**
@brief Wrapper around MD5_Init
*/
int
ink_code_incr_md5_init(INK_DIGEST_CTX *context)
{
return MD5_Init(context);
}
/**
@brief Wrapper around MD5_Update
*/
int
ink_code_incr_md5_update(INK_DIGEST_CTX *context, const char *input, int input_length)
{
return MD5_Update(context, input, input_length);
}
/**
@brief Wrapper around MD5_Final
*/
int
ink_code_incr_md5_final(char *sixteen_byte_hash_pointer, INK_DIGEST_CTX *context)
{
return MD5_Final((unsigned char *)sixteen_byte_hash_pointer, context);
}
/**
@brief Helper that will init, update, and create a final MD5
@return always returns 0, maybe some error checking should be done
*/
int
ink_code_md5(unsigned char const *input, int input_length, unsigned char *sixteen_byte_hash_pointer)
{
MD5_CTX context;
MD5_Init(&context);
MD5_Update(&context, input, input_length);
MD5_Final(sixteen_byte_hash_pointer, &context);
return (0);
}
/**
@brief Converts a MD5 to a null-terminated string
Externalizes an INK_MD5 as a null-terminated string into the first argument.
Side Effects: none
Reentrancy: n/a.
Thread Safety: safe.
Mem Management: stomps the passed dest char*.
@return returns the passed destination string ptr.
*/
/* reentrant version */
char *
ink_code_md5_stringify(char *dest33, const size_t destSize, const char *md5)
{
ink_assert(destSize >= 33);
int i;
for (i = 0; i < 16; i++) {
// we check the size of the destination buffer above
// coverity[secure_coding]
sprintf(&(dest33[i * 2]), "%02X", md5[i]);
}
ink_assert(dest33[32] == '\0');
return (dest33);
} /* End ink_code_stringify_md5(const char *md5) */
/**
@brief Converts a MD5 to a null-terminated string
Externalizes an INK_MD5 as a null-terminated string into the first argument.
Does so without intenal procedure calls.
Side Effects: none.
Reentrancy: n/a.
Thread Safety: safe.
Mem Management: stomps the passed dest char*.
@return returns the passed destination string ptr.
*/
/* reentrant version */
char *
ink_code_to_hex_str(char *dest33, uint8_t const *hash)
{
int i;
char *d;
static char hex_digits[] = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'};
d = dest33;
for (i = 0; i < 16; i += 4) {
*(d + 0) = hex_digits[hash[i + 0] >> 4];
*(d + 1) = hex_digits[hash[i + 0] & 15];
*(d + 2) = hex_digits[hash[i + 1] >> 4];
*(d + 3) = hex_digits[hash[i + 1] & 15];
*(d + 4) = hex_digits[hash[i + 2] >> 4];
*(d + 5) = hex_digits[hash[i + 2] & 15];
*(d + 6) = hex_digits[hash[i + 3] >> 4];
*(d + 7) = hex_digits[hash[i + 3] & 15];
d += 8;
}
*d = '\0';
return (dest33);
}
|