xcbc_mac.h File Reference

XCBC-MAC message authentication code. More...

Go to the source code of this file.

Data Structures

struct  XcbcMacContext
 XCBC-MAC algorithm context. More...
 

Macros

#define XCBC_MAC_PRIVATE_CONTEXT
 

Functions

error_t xcbcMacCompute (const CipherAlgo *cipher, const void *key, size_t keyLen, const void *data, size_t dataLen, uint8_t *mac, size_t macLen)
 Compute XCBC-MAC using the specified cipher algorithm. More...
 
error_t xcbcMacInit (XcbcMacContext *context, const CipherAlgo *cipher, const void *key, size_t keyLen)
 Initialize XCBC-MAC calculation. More...
 
void xcbcMacReset (XcbcMacContext *context)
 Reset XCBC-MAC context. More...
 
void xcbcMacUpdate (XcbcMacContext *context, const void *data, size_t dataLen)
 Update the XCBC-MAC context with a portion of the message being hashed. More...
 
error_t xcbcMacFinal (XcbcMacContext *context, uint8_t *mac, size_t macLen)
 Finish the XCBC-MAC calculation. More...
 
void xcbcMacDeinit (XcbcMacContext *context)
 Release XCBC-MAC context. More...
 
void xcbcMacXorBlock (uint8_t *x, const uint8_t *a, const uint8_t *b, size_t n)
 XOR operation. More...
 

Detailed Description

XCBC-MAC message authentication code.

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 xcbc_mac.h.

Macro Definition Documentation

◆ XCBC_MAC_PRIVATE_CONTEXT

#define XCBC_MAC_PRIVATE_CONTEXT

Definition at line 40 of file xcbc_mac.h.

Function Documentation

◆ xcbcMacCompute()

error_t xcbcMacCompute ( const CipherAlgo cipher,
const void *  key,
size_t  keyLen,
const void *  data,
size_t  dataLen,
uint8_t *  mac,
size_t  macLen 
)

Compute XCBC-MAC using the specified cipher algorithm.

Parameters
[in]cipherCipher algorithm used to compute XCBC-MAC
[in]keyPointer to the secret key
[in]keyLenLength of the secret key
[in]dataPointer to the input message
[in]dataLenLength of the input data
[out]macCalculated MAC value
[in]macLenExpected length of the MAC
Returns
Error code

Definition at line 58 of file xcbc_mac.c.

◆ xcbcMacDeinit()

void xcbcMacDeinit ( XcbcMacContext context)

Release XCBC-MAC context.

Parameters
[in]contextPointer to the XCBC-MAC context

Definition at line 294 of file xcbc_mac.c.

◆ xcbcMacFinal()

error_t xcbcMacFinal ( XcbcMacContext context,
uint8_t *  mac,
size_t  macLen 
)

Finish the XCBC-MAC calculation.

Parameters
[in]contextPointer to the XCBC-MAC context
[out]macCalculated MAC value (optional parameter)
[in]macLenExpected length of the MAC
Returns
Error code

Definition at line 229 of file xcbc_mac.c.

◆ xcbcMacInit()

error_t xcbcMacInit ( XcbcMacContext context,
const CipherAlgo cipher,
const void *  key,
size_t  keyLen 
)

Initialize XCBC-MAC calculation.

Parameters
[in]contextPointer to the XCBC-MAC context to initialize
[in]cipherCipher algorithm used to compute XCBC-MAC
[in]keyPointer to the secret key
[in]keyLenLength of the secret key
Returns
Error code

Definition at line 107 of file xcbc_mac.c.

◆ xcbcMacReset()

void xcbcMacReset ( XcbcMacContext context)

Reset XCBC-MAC context.

Parameters
[in]contextPointer to the XCBC-MAC context

Definition at line 164 of file xcbc_mac.c.

◆ xcbcMacUpdate()

void xcbcMacUpdate ( XcbcMacContext context,
const void *  data,
size_t  dataLen 
)

Update the XCBC-MAC context with a portion of the message being hashed.

Parameters
[in]contextPointer to the XCBC-MAC context
[in]dataPointer to the input data
[in]dataLenLength of the buffer

Definition at line 183 of file xcbc_mac.c.

◆ xcbcMacXorBlock()

void xcbcMacXorBlock ( uint8_t *  x,
const uint8_t *  a,
const uint8_t *  b,
size_t  n 
)

XOR operation.

Parameters
[out]xBlock resulting from the XOR operation
[in]aFirst input block
[in]bSecond input block
[in]nSize of the block, in bytes

Definition at line 316 of file xcbc_mac.c.