blake2s256.c File Reference

BLAKE2s-256 hash function. More...

#include "core/crypto.h"
#include "hash/blake2s256.h"

Go to the source code of this file.

Macros

#define TRACE_LEVEL   CRYPTO_TRACE_LEVEL
 

Functions

error_t blake2s256Compute (const void *data, size_t length, uint8_t *digest)
 Digest a message using BLAKE2s-256. More...
 
void blake2s256Init (Blake2s256Context *context)
 Initialize BLAKE2s-256 hash computation. More...
 
void blake2s256Update (Blake2s256Context *context, const void *data, size_t length)
 Update BLAKE2s-256 hash computation. More...
 
void blake2s256Final (Blake2s256Context *context, uint8_t *digest)
 Finish BLAKE2s-256 hash computation. More...
 

Variables

const uint8_t BLAKE2S256_OID [11] = {0x43, 0x06, 0x01, 0x04, 0x01, 0x8D, 0x3A, 0x0C, 0x02, 0x02, 0x08}
 
const HashAlgo blake2s256HashAlgo
 

Detailed Description

BLAKE2s-256 hash function.

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.

Author
Oryx Embedded SARL (www.oryx-embedded.com)
Version
2.4.0

Definition in file blake2s256.c.

Macro Definition Documentation

◆ TRACE_LEVEL

#define TRACE_LEVEL   CRYPTO_TRACE_LEVEL

Definition at line 32 of file blake2s256.c.

Function Documentation

◆ blake2s256Compute()

error_t blake2s256Compute ( const void *  data,
size_t  length,
uint8_t *  digest 
)

Digest a message using BLAKE2s-256.

Parameters
[in]dataPointer to the message being hashed
[in]lengthLength of the message
[out]digestPointer to the calculated digest
Returns
Error code

Definition at line 71 of file blake2s256.c.

◆ blake2s256Final()

void blake2s256Final ( Blake2s256Context context,
uint8_t *  digest 
)

Finish BLAKE2s-256 hash computation.

Parameters
[in]contextPointer to the BLAKE2s context
[out]digestCalculated digest (optional parameter)

Definition at line 110 of file blake2s256.c.

◆ blake2s256Init()

void blake2s256Init ( Blake2s256Context context)

Initialize BLAKE2s-256 hash computation.

Parameters
[in]contextPointer to the BLAKE2s context to initialize

Definition at line 83 of file blake2s256.c.

◆ blake2s256Update()

void blake2s256Update ( Blake2s256Context context,
const void *  data,
size_t  length 
)

Update BLAKE2s-256 hash computation.

Parameters
[in]contextPointer to the BLAKE2s context
[in]dataPointer to the buffer being hashed
[in]lengthLength of the buffer

Definition at line 97 of file blake2s256.c.

Variable Documentation

◆ BLAKE2S256_OID

const uint8_t BLAKE2S256_OID[11] = {0x43, 0x06, 0x01, 0x04, 0x01, 0x8D, 0x3A, 0x0C, 0x02, 0x02, 0x08}

Definition at line 42 of file blake2s256.c.

◆ blake2s256HashAlgo

const HashAlgo blake2s256HashAlgo
Initial value:
=
{
"BLAKE2s-256",
sizeof(BLAKE2S256_OID),
NULL
}
void blake2s256Init(Blake2s256Context *context)
Initialize BLAKE2s-256 hash computation.
Definition: blake2s256.c:83
void blake2s256Update(Blake2s256Context *context, const void *data, size_t length)
Update BLAKE2s-256 hash computation.
Definition: blake2s256.c:97
error_t blake2s256Compute(const void *data, size_t length, uint8_t *digest)
Digest a message using BLAKE2s-256.
Definition: blake2s256.c:71
const uint8_t BLAKE2S256_OID[11]
Definition: blake2s256.c:42
void blake2s256Final(Blake2s256Context *context, uint8_t *digest)
Finish BLAKE2s-256 hash computation.
Definition: blake2s256.c:110
#define BLAKE2S256_BLOCK_SIZE
Definition: blake2s256.h:39
#define BLAKE2S256_DIGEST_SIZE
Definition: blake2s256.h:41
#define BLAKE2S256_MIN_PAD_SIZE
Definition: blake2s256.h:43
error_t(* HashAlgoCompute)(const void *data, size_t length, uint8_t *digest)
Definition: crypto.h:956
void(* HashAlgoFinal)(void *context, uint8_t *digest)
Definition: crypto.h:963
void(* HashAlgoUpdate)(void *context, const void *data, size_t length)
Definition: crypto.h:961
void(* HashAlgoInit)(void *context)
Definition: crypto.h:959
#define FALSE
Definition: os_port.h:46
BLAKE2s algorithm context.
Definition: blake2s.h:51

Definition at line 45 of file blake2s256.c.