MD5 (Message-Digest Algorithm) More...
Go to the source code of this file.
Macros | |
#define | TRACE_LEVEL CRYPTO_TRACE_LEVEL |
#define | F(x, y, z) (((x) & (y)) | (~(x) & (z))) |
#define | G(x, y, z) (((x) & (z)) | ((y) & ~(z))) |
#define | H(x, y, z) ((x) ^ (y) ^ (z)) |
#define | I(x, y, z) ((y) ^ ((x) | ~(z))) |
#define | FF(a, b, c, d, x, s, k) a += F(b, c, d) + (x) + (k), a = ROL32(a, s) + (b) |
#define | GG(a, b, c, d, x, s, k) a += G(b, c, d) + (x) + (k), a = ROL32(a, s) + (b) |
#define | HH(a, b, c, d, x, s, k) a += H(b, c, d) + (x) + (k), a = ROL32(a, s) + (b) |
#define | II(a, b, c, d, x, s, k) a += I(b, c, d) + (x) + (k), a = ROL32(a, s) + (b) |
Functions | |
__weak_func error_t | md5Compute (const void *data, size_t length, uint8_t *digest) |
Digest a message using MD5. More... | |
__weak_func void | md5Init (Md5Context *context) |
Initialize MD5 message digest context. More... | |
__weak_func void | md5Update (Md5Context *context, const void *data, size_t length) |
Update the MD5 context with a portion of the message being hashed. More... | |
__weak_func void | md5Final (Md5Context *context, uint8_t *digest) |
Finish the MD5 message digest. More... | |
__weak_func void | md5FinalRaw (Md5Context *context, uint8_t *digest) |
Finish the MD5 message digest (no padding added) More... | |
__weak_func void | md5ProcessBlock (Md5Context *context) |
Process message in 16-word blocks. More... | |
Variables | |
const uint8_t | MD5_OID [8] = {0x2A, 0x86, 0x48, 0x86, 0xF7, 0x0D, 0x02, 0x05} |
const HashAlgo | md5HashAlgo |
Detailed Description
MD5 (Message-Digest Algorithm)
License
SPDX-License-Identifier: GPL-2.0-or-later
Copyright (C) 2010-2024 Oryx Embedded SARL. All rights reserved.
This file is part of CycloneCRYPTO Open.
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Description
The MD5 algorithm takes as input a message of arbitrary length and produces as output a 128-bit message digest of the input. Refer to RFC 1321
- Version
- 2.4.4
Definition in file md5.c.
Macro Definition Documentation
◆ F
◆ FF
◆ G
◆ GG
◆ H
◆ HH
◆ I
◆ II
◆ TRACE_LEVEL
Function Documentation
◆ md5Compute()
__weak_func error_t md5Compute | ( | const void * | data, |
size_t | length, | ||
uint8_t * | digest | ||
) |
◆ md5Final()
__weak_func void md5Final | ( | Md5Context * | context, |
uint8_t * | digest | ||
) |
◆ md5FinalRaw()
__weak_func void md5FinalRaw | ( | Md5Context * | context, |
uint8_t * | digest | ||
) |
◆ md5Init()
__weak_func void md5Init | ( | Md5Context * | context | ) |
◆ md5ProcessBlock()
__weak_func void md5ProcessBlock | ( | Md5Context * | context | ) |
◆ md5Update()
__weak_func void md5Update | ( | Md5Context * | context, |
const void * | data, | ||
size_t | length | ||
) |
Variable Documentation
◆ MD5_OID
const uint8_t MD5_OID[8] = {0x2A, 0x86, 0x48, 0x86, 0xF7, 0x0D, 0x02, 0x05} |
◆ md5HashAlgo
const HashAlgo md5HashAlgo |