MySQL 8.3.0
Source Code Documentation
my_md5.h
Go to the documentation of this file.
1#ifndef MY_MD5_INCLUDED
2#define MY_MD5_INCLUDED
3
4/* Copyright (c) 2000, 2023, Oracle and/or its affiliates.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License, version 2.0,
8 as published by the Free Software Foundation.
9
10 This program is also distributed with certain software (including
11 but not limited to OpenSSL) that is licensed under separate terms,
12 as designated in a particular file or component or in included license
13 documentation. The authors of MySQL hereby grant you an additional
14 permission to link the program and your derivative works with the
15 separately licensed software that they have included with MySQL.
16
17 This program is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License, version 2.0, for more details.
21
22 You should have received a copy of the GNU General Public License
23 along with this program; if not, write to the Free Software
24 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
25
26#include <sys/types.h>
27
28#include "dig_vec.h"
29#include "my_inttypes.h"
30
31/**
32 @file include/my_md5.h
33 Wrapper function for MD5 implementation.
34*/
35
36extern int compute_md5_hash(char *digest, const char *buf, size_t len);
37
38/*
39 Convert an array of bytes to a hexadecimal representation.
40
41 Used to generate a hexadecimal representation of a message digest.
42*/
43static inline void array_to_hex(char *to, const unsigned char *str, uint len) {
44 const unsigned char *str_end = str + len;
45 for (; str != str_end; ++str) {
46 *to++ = dig_vec_lower[((uchar)*str) >> 4];
47 *to++ = dig_vec_lower[((uchar)*str) & 0x0F];
48 }
49}
50
51#endif /* MY_MD5_INCLUDED */
constexpr std::array< const char, 37 > dig_vec_lower
Definition: dig_vec.h:35
Some integer typedefs for easier portability.
unsigned char uchar
Definition: my_inttypes.h:51
int compute_md5_hash(char *digest, const char *buf, size_t len)
Wrapper function to compute MD5 message digest.
Definition: my_md5.cc:74
static void array_to_hex(char *to, const unsigned char *str, uint len)
Definition: my_md5.h:43
std::string str(const mysqlrouter::ConfigGenerator::Options::Endpoint &ep)
Definition: config_generator.cc:1065
Definition: buf0block_hint.cc:29