94 lines
3.3 KiB
C
94 lines
3.3 KiB
C
|
/*************************************************************************************************/
|
||
|
/*!
|
||
|
* \file calc128.h
|
||
|
*
|
||
|
* \brief 128-bit integer utilities.
|
||
|
*
|
||
|
* $Date: 2016-12-28 16:12:14 -0600 (Wed, 28 Dec 2016) $
|
||
|
* $Revision: 10805 $
|
||
|
*
|
||
|
* Copyright (c) 2010-2017 ARM Ltd., all rights reserved.
|
||
|
* ARM Ltd. confidential and proprietary.
|
||
|
*
|
||
|
* IMPORTANT. Your use of this file is governed by a Software License Agreement
|
||
|
* ("Agreement") that must be accepted in order to download or otherwise receive a
|
||
|
* copy of this file. You may not use or copy this file for any purpose other than
|
||
|
* as described in the Agreement. If you do not agree to all of the terms of the
|
||
|
* Agreement do not use this file and delete all copies in your possession or control;
|
||
|
* if you do not have a copy of the Agreement, you must contact ARM Ltd. prior
|
||
|
* to any use, copying or further distribution of this software.
|
||
|
*/
|
||
|
/*************************************************************************************************/
|
||
|
#ifndef CALC128_H
|
||
|
#define CALC128_H
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
/**************************************************************************************************
|
||
|
Macros
|
||
|
**************************************************************************************************/
|
||
|
|
||
|
/*! 128-bit integer length in bytes */
|
||
|
#define CALC128_LEN 16
|
||
|
|
||
|
/**************************************************************************************************
|
||
|
Global Variables
|
||
|
**************************************************************************************************/
|
||
|
|
||
|
/*! 128-bit zero value */
|
||
|
extern const uint8_t calc128Zeros[CALC128_LEN];
|
||
|
|
||
|
/**************************************************************************************************
|
||
|
Function Declarations
|
||
|
**************************************************************************************************/
|
||
|
|
||
|
/*************************************************************************************************/
|
||
|
/*!
|
||
|
* \fn Calc128Cpy
|
||
|
*
|
||
|
* \brief Copy a 128-bit integer from source to destination.
|
||
|
*
|
||
|
* \param pDst Pointer to destination.
|
||
|
* \param pSrc Pointer to source.
|
||
|
*
|
||
|
* \return None.
|
||
|
*/
|
||
|
/*************************************************************************************************/
|
||
|
void Calc128Cpy(uint8_t *pDst, uint8_t *pSrc);
|
||
|
|
||
|
/*************************************************************************************************/
|
||
|
/*!
|
||
|
* \fn Calc128Cpy64
|
||
|
*
|
||
|
* \brief Copy a 64-bit integer from source to destination.
|
||
|
*
|
||
|
* \param pDst Pointer to destination.
|
||
|
* \param pSrc Pointer to source.
|
||
|
*
|
||
|
* \return None.
|
||
|
*/
|
||
|
/*************************************************************************************************/
|
||
|
void Calc128Cpy64(uint8_t *pDst, uint8_t *pSrc);
|
||
|
|
||
|
/*************************************************************************************************/
|
||
|
/*!
|
||
|
* \fn Calc128Xor
|
||
|
*
|
||
|
* \brief Exclusive-or two 128-bit integers and return the result in pDst.
|
||
|
*
|
||
|
* \param pDst Pointer to destination.
|
||
|
* \param pSrc Pointer to source.
|
||
|
*
|
||
|
* \return None.
|
||
|
*/
|
||
|
/*************************************************************************************************/
|
||
|
void Calc128Xor(uint8_t *pDst, uint8_t *pSrc);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
};
|
||
|
#endif
|
||
|
|
||
|
#endif /* CALC128_H */
|