123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518 |
- /*
- * The Clear BSD License
- * Copyright (c) 2015, Freescale Semiconductor, Inc.
- * Copyright 2017, NXP
- * All rights reserved.
- *
- *
- * Redistribution and use in source and binary forms, with or without modification,
- * are permitted (subject to the limitations in the disclaimer below) provided
- * that the following conditions are met:
- *
- * o Redistributions of source code must retain the above copyright notice, this list
- * of conditions and the following disclaimer.
- *
- * o Redistributions in binary form must reproduce the above copyright notice, this
- * list of conditions and the following disclaimer in the documentation and/or
- * other materials provided with the distribution.
- *
- * o Neither the name of the copyright holder nor the names of its
- * contributors may be used to endorse or promote products derived from this
- * software without specific prior written permission.
- *
- * NO EXPRESS OR IMPLIED LICENSES TO ANY PARTY'S PATENT RIGHTS ARE GRANTED BY THIS LICENSE.
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
- * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
- * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
- * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
- * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
- #include "fsl_mmcau.h"
- #include "cau_api.h"
- #define MMCAU_AES_BLOCK_SIZE (16)
- #define MMCAU_DES_BLOCK_SIZE (8)
- #define MMCAU_MD5_STATE_SIZE (16)
- #define MMCAU_SHA1_STATE_SIZE (20)
- #define MMCAU_SHA256_STATE_SIZE (32)
- /* these are maximum for CAU API has functions. HAST_STATE shall be set to maximum of MD5_STATE,SHA1_STATE and
- * SHA256_STATE */
- #define MMCAU_HASH_STATE_SIZE (32)
- #define MMCAU_HASH_BLOCK_SIZE (64)
- /* typedef for pointer to CAU API functions */
- typedef void (*cau_hash_api_t)(const uint8_t *msgData, const int numBlocks, uint32_t *hashState);
- typedef void (*cau_hash_md5_api_t)(const uint8_t *msgData, const int numBlocks, uint8_t *hashState);
- /*******************************************************************************
- * Code
- ******************************************************************************/
- static void mmcau_memcpy(void *dst, const void *src, size_t size)
- {
- register uint8_t *to = dst;
- register const uint8_t *from = src;
- while (size)
- {
- *to = *from;
- size--;
- to++;
- from++;
- }
- }
- /* check if in pointer is aligned. if not, copy in to inAlign. return pointer to aligned data. */
- static const void *mmcau_align_const(const void *in, void *inAlign, size_t size)
- {
- const void *inWork = in;
- /* if one or two least significant bits in the address are set, the address is unaligned */
- if ((uint32_t)in & 3u)
- {
- mmcau_memcpy(inAlign, in, size);
- inWork = inAlign;
- }
- return inWork;
- }
- /* check if out pointer is aligned. if not, set bool variable to notify caller. return pointer to aligned data. */
- static void *mmcau_align(void *out, void *outAlign, bool *copyOut)
- {
- void *outWork;
- /* if one or two least significant bits in the address are set, the address is unaligned */
- if ((uint32_t)out & 3u)
- {
- outWork = outAlign;
- *copyOut = true;
- }
- else
- {
- outWork = out;
- *copyOut = false;
- }
- return outWork;
- }
- /* common function for AES process. "encrypt" argument selects between en-/de-cryption */
- static status_t mmcau_AesCrypt(const uint8_t *in, const uint8_t *keySch, uint32_t aesRounds, uint8_t *out, bool encrypt)
- {
- status_t status;
- /* check validity of input arguments */
- if (((aesRounds != 10u) && (aesRounds != 12u) && (aesRounds != 14u)) || (NULL == in) || (NULL == out) ||
- (NULL == keySch))
- {
- status = kStatus_InvalidArgument;
- }
- else
- {
- uint8_t inAlign[MMCAU_AES_BLOCK_SIZE]; /* 16 bytes aligned input block */
- uint8_t outAlign[MMCAU_AES_BLOCK_SIZE]; /* 16 bytes aligned output block */
- uint32_t keySchAlign[60]; /* max 60 longwords in case of 32 bytes AES key */
- size_t keySchSize = 0;
- const uint8_t *keySchWork;
- const uint8_t *inWork;
- uint8_t *outWork;
- bool copyOut;
- /* compute keySchSize in bytes per CAU API documentation */
- if (aesRounds == 10u)
- {
- keySchSize = 44u * sizeof(uint32_t);
- }
- else if (aesRounds == 12u)
- {
- keySchSize = 52u * sizeof(uint32_t);
- }
- else /* aesRounds = 14u */
- {
- keySchSize = 60u * sizeof(uint32_t);
- }
- /* align pointers */
- inWork = mmcau_align_const(in, inAlign, MMCAU_AES_BLOCK_SIZE);
- keySchWork = mmcau_align_const(keySch, keySchAlign, keySchSize);
- outWork = mmcau_align(out, outAlign, ©Out);
- /* call actual CAU API */
- if (encrypt)
- {
- cau_aes_encrypt(inWork, keySchWork, aesRounds, outWork);
- }
- else
- {
- cau_aes_decrypt(inWork, keySchWork, aesRounds, outWork);
- }
- /* copy to unaligned out pointer */
- if (copyOut)
- {
- mmcau_memcpy(out, outAlign, MMCAU_AES_BLOCK_SIZE);
- }
- status = kStatus_Success;
- }
- return status;
- }
- /* common function for DES process. "encrypt" argument selects between en-/de-cryption */
- static status_t mmcau_DesCrypt(const uint8_t *in, const uint8_t *key, uint8_t *out, bool encrypt)
- {
- status_t status;
- if (in && key && out)
- {
- uint8_t keyAlign[MMCAU_DES_BLOCK_SIZE]; /* 8 bytes key size aligned */
- uint8_t inAlign[MMCAU_DES_BLOCK_SIZE]; /* 8 bytes input block aligned */
- uint8_t outAlign[MMCAU_DES_BLOCK_SIZE]; /* 8 bytes output block aligned */
- const uint8_t *inWork;
- const uint8_t *keyWork;
- uint8_t *outWork;
- bool copyOut;
- /* align pointers */
- inWork = mmcau_align_const(in, inAlign, MMCAU_DES_BLOCK_SIZE);
- keyWork = mmcau_align_const(key, keyAlign, MMCAU_DES_BLOCK_SIZE);
- outWork = mmcau_align(out, outAlign, ©Out);
- /* call CAU API */
- if (encrypt)
- {
- cau_des_encrypt(inWork, keyWork, outWork);
- }
- else
- {
- cau_des_decrypt(inWork, keyWork, outWork);
- }
- if (copyOut)
- {
- mmcau_memcpy(out, outAlign, MMCAU_DES_BLOCK_SIZE);
- }
- status = kStatus_Success;
- }
- else
- {
- status = kStatus_InvalidArgument;
- }
- return status;
- }
- static status_t mmcau_hash_API(
- cau_hash_api_t cauFunc, const uint8_t *msgData, uint32_t numBlocks, void *hashState, size_t stateSize)
- {
- status_t status;
- if (msgData && hashState && numBlocks)
- {
- const uint8_t *msgDataWork;
- void *hashStateWork;
- uint8_t msgDataAlign[MMCAU_HASH_BLOCK_SIZE];
- uint8_t hashStateAlign[MMCAU_HASH_STATE_SIZE];
- bool copyInOut;
- /* get aligned pointers */
- msgDataWork = mmcau_align_const(msgData, msgDataAlign, MMCAU_HASH_BLOCK_SIZE);
- hashStateWork = mmcau_align(hashState, hashStateAlign, ©InOut);
- if (copyInOut)
- {
- mmcau_memcpy(hashStateAlign, hashState, stateSize);
- }
- /* CAU API */
- cauFunc(msgDataWork, numBlocks, hashStateWork);
- /* copy result to misaligned address */
- if (copyInOut)
- {
- mmcau_memcpy(hashState, hashStateAlign, stateSize);
- }
- status = kStatus_Success;
- }
- else
- {
- status = kStatus_InvalidArgument;
- }
- return status;
- }
- static status_t mmcau_hash_MD5API(
- cau_hash_md5_api_t cauFunc, const uint8_t *msgData, uint32_t numBlocks, void *hashState, size_t stateSize)
- {
- status_t status;
- if (msgData && hashState && numBlocks)
- {
- const uint8_t *msgDataWork;
- void *hashStateWork;
- uint8_t msgDataAlign[MMCAU_HASH_BLOCK_SIZE];
- uint8_t hashStateAlign[MMCAU_HASH_STATE_SIZE];
- bool copyInOut;
- /* get aligned pointers */
- msgDataWork = mmcau_align_const(msgData, msgDataAlign, MMCAU_HASH_BLOCK_SIZE);
- hashStateWork = mmcau_align(hashState, hashStateAlign, ©InOut);
- if (copyInOut)
- {
- mmcau_memcpy(hashStateAlign, hashState, stateSize);
- }
- /* CAU API */
- cauFunc(msgDataWork, numBlocks, hashStateWork);
- /* copy result to misaligned address */
- if (copyInOut)
- {
- mmcau_memcpy(hashState, hashStateAlign, stateSize);
- }
- status = kStatus_Success;
- }
- else
- {
- status = kStatus_InvalidArgument;
- }
- return status;
- }
- status_t MMCAU_AES_SetKey(const uint8_t *key, const size_t keySize, uint8_t *keySch)
- {
- status_t status;
- /* check validity of input arguments */
- if (((keySize != 16u) && (keySize != 24u) && (keySize != 32u)) || (NULL == key) || (NULL == keySch))
- {
- status = kStatus_InvalidArgument;
- }
- else
- {
- uint8_t keyAlign[32] = {0}; /* max 32 bytes key supported by CAU lib */
- uint32_t keySchAlign[60] = {0}; /* max 60 longwords in case of 32 bytes AES key */
- const uint8_t *keyWork; /* aligned CAU lib input address argument */
- uint8_t *keySchWork; /* aligned CAU lib output address argument */
- bool copyOut;
- size_t sizeOut = 0;
- keyWork = mmcau_align_const(key, keyAlign, sizeof(keyAlign));
- keySchWork = mmcau_align(keySch, keySchAlign, ©Out);
- /* call CAU lib API with all addresses aligned */
- cau_aes_set_key(keyWork, keySize * 8, keySchWork);
- /* in case we have aligned output to local, copy the result out */
- if (copyOut)
- {
- if (keySize == 16u)
- {
- sizeOut = 44u * sizeof(uint32_t);
- }
- else if (keySize == 24u)
- {
- sizeOut = 52u * sizeof(uint32_t);
- }
- else /* keySize = 32u */
- {
- sizeOut = 60u * sizeof(uint32_t);
- }
- mmcau_memcpy(keySch, keySchAlign, sizeOut);
- }
- status = kStatus_Success;
- }
- return status;
- }
- status_t MMCAU_AES_EncryptEcb(const uint8_t *in, const uint8_t *keySch, uint32_t aesRounds, uint8_t *out)
- {
- return mmcau_AesCrypt(in, keySch, aesRounds, out, true /* true for encryption */);
- }
- status_t MMCAU_AES_DecryptEcb(const uint8_t *in, const uint8_t *keySch, uint32_t aesRounds, uint8_t *out)
- {
- return mmcau_AesCrypt(in, keySch, aesRounds, out, false /* false for decryption */);
- }
- status_t MMCAU_DES_ChkParity(const uint8_t *key)
- {
- status_t status;
- if (key)
- {
- uint8_t keyAlign[8]; /* 8 bytes key size aligned */
- const uint8_t *keyWork;
- /* align key[] */
- keyWork = mmcau_align_const(key, keyAlign, sizeof(keyAlign));
- /* call CAU API */
- if (0 == cau_des_chk_parity(keyWork))
- {
- status = kStatus_Success;
- }
- else
- {
- status = kStatus_Fail;
- }
- }
- else
- {
- status = kStatus_InvalidArgument;
- }
- return status;
- }
- status_t MMCAU_DES_EncryptEcb(const uint8_t *in, const uint8_t *key, uint8_t *out)
- {
- return mmcau_DesCrypt(in, key, out, true /* 1 for encryption */);
- }
- status_t MMCAU_DES_DecryptEcb(const uint8_t *in, const uint8_t *key, uint8_t *out)
- {
- return mmcau_DesCrypt(in, key, out, false /* 0 for decryption */);
- }
- /* cau_md5_initialize_output() */
- status_t MMCAU_MD5_InitializeOutput(uint32_t *md5State)
- {
- status_t status;
- if (md5State)
- {
- uint8_t hashStateAlign[MMCAU_HASH_STATE_SIZE];
- void *hashStateWork;
- bool copyInOut;
- /* align pointer */
- hashStateWork = mmcau_align(md5State, hashStateAlign, ©InOut);
- if (copyInOut)
- {
- mmcau_memcpy(hashStateAlign, md5State, MMCAU_MD5_STATE_SIZE);
- }
- /* CAU API */
- cau_md5_initialize_output(hashStateWork);
- /* copy result to unaligned pointer */
- if (copyInOut)
- {
- mmcau_memcpy(md5State, hashStateAlign, MMCAU_MD5_STATE_SIZE);
- }
- status = kStatus_Success;
- }
- else
- {
- status = kStatus_InvalidArgument;
- }
- return status;
- }
- /* cau_md5_hash_n */
- status_t MMCAU_MD5_HashN(const uint8_t *msgData, uint32_t numBlocks, uint32_t *md5State)
- {
- return mmcau_hash_MD5API((cau_hash_md5_api_t)cau_md5_hash_n, msgData, numBlocks, md5State, MMCAU_MD5_STATE_SIZE);
- }
- /* cau_md5_update */
- status_t MMCAU_MD5_Update(const uint8_t *msgData, uint32_t numBlocks, uint32_t *md5State)
- {
- return mmcau_hash_MD5API((cau_hash_md5_api_t)cau_md5_update, msgData, numBlocks, md5State, MMCAU_MD5_STATE_SIZE);
- }
- /* cau_sha1_initialize_output */
- status_t MMCAU_SHA1_InitializeOutput(uint32_t *sha1State)
- {
- status_t status;
- if (sha1State)
- {
- uint8_t hashStateAlign[MMCAU_HASH_STATE_SIZE];
- void *hashStateWork;
- bool copyInOut;
- /* align pointer */
- hashStateWork = mmcau_align(sha1State, hashStateAlign, ©InOut);
- if (copyInOut)
- {
- mmcau_memcpy(hashStateAlign, sha1State, MMCAU_SHA1_STATE_SIZE);
- }
- /* CAU API */
- cau_sha1_initialize_output(hashStateWork);
- /* copy result to unaligned pointer */
- if (copyInOut)
- {
- mmcau_memcpy(sha1State, hashStateAlign, MMCAU_SHA1_STATE_SIZE);
- }
- status = kStatus_Success;
- }
- else
- {
- status = kStatus_InvalidArgument;
- }
- return status;
- }
- /* cau_sha1_hash_n */
- status_t MMCAU_SHA1_HashN(const uint8_t *msgData, uint32_t numBlocks, uint32_t *sha1State)
- {
- return mmcau_hash_API((cau_hash_api_t)cau_sha1_hash_n, msgData, numBlocks, sha1State, MMCAU_SHA1_STATE_SIZE);
- }
- /* cau_sha1_update */
- status_t MMCAU_SHA1_Update(const uint8_t *msgData, uint32_t numBlocks, uint32_t *sha1State)
- {
- return mmcau_hash_API((cau_hash_api_t)cau_sha1_update, msgData, numBlocks, sha1State, MMCAU_SHA1_STATE_SIZE);
- }
- /* cau_sha256_initialize_output(). not this function has different return value (int) that the other two (void) */
- status_t MMCAU_SHA256_InitializeOutput(uint32_t *sha256State)
- {
- status_t status;
- int ret;
- if (sha256State)
- {
- uint8_t hashStateAlign[MMCAU_HASH_STATE_SIZE];
- void *hashStateWork;
- bool copyInOut;
- /* align pointer */
- hashStateWork = mmcau_align(sha256State, hashStateAlign, ©InOut);
- if (copyInOut)
- {
- mmcau_memcpy(hashStateAlign, sha256State, MMCAU_SHA256_STATE_SIZE);
- }
- /* CAU API */
- ret = cau_sha256_initialize_output(hashStateWork);
- /* copy result to unaligned pointer */
- if (copyInOut)
- {
- mmcau_memcpy(sha256State, hashStateAlign, MMCAU_SHA256_STATE_SIZE);
- }
- if (ret == 0)
- {
- status = kStatus_Success;
- }
- else
- {
- status = kStatus_Fail;
- }
- }
- else
- {
- status = kStatus_InvalidArgument;
- }
- return status;
- }
- /* cau_sha256_hash_n */
- status_t MMCAU_SHA256_HashN(const uint8_t *input, uint32_t numBlocks, uint32_t *sha256State)
- {
- return mmcau_hash_API((cau_hash_api_t)cau_sha256_hash_n, input, numBlocks, sha256State, MMCAU_SHA256_STATE_SIZE);
- }
- /* cau_sha256_update */
- status_t MMCAU_SHA256_Update(const uint8_t *input, uint32_t numBlocks, uint32_t *sha256State)
- {
- return mmcau_hash_API((cau_hash_api_t)cau_sha256_update, input, numBlocks, sha256State, MMCAU_SHA256_STATE_SIZE);
- }
|