CryptoCell CHACHA APIs

nRF5 SDK v17.0.2

Data Structures

struct CRYS_CHACHAUserContext_t

Typedefs

typedef uint8_t CRYS_CHACHA_Nonce_t [(3 *sizeof(uint32_t))]
typedef uint8_t CRYS_CHACHA_Key_t [(8 *sizeof(uint32_t))]
typedef struct
CRYS_CHACHAUserContext_t
CRYS_CHACHAUserContext_t

Functions

CRYSError_t CRYS_CHACHA_Init ( CRYS_CHACHAUserContext_t *pContextID, CRYS_CHACHA_Nonce_t pNonce, CRYS_CHACHA_NonceSize_t nonceSize, CRYS_CHACHA_Key_t pKey, uint32_t initialCounter, CRYS_CHACHA_EncryptMode_t EncryptDecryptFlag)
This function is used to initialize the context for CHACHA operations. More...
CRYSError_t CRYS_CHACHA_Block ( CRYS_CHACHAUserContext_t *pContextID, uint8_t *pDataIn, uint32_t dataInSize, uint8_t *pDataOut)
This function is used to process aligned blocks of CHACHA. The data in size should be a multiple of chacha block size. More...
CRYSError_t CRYS_CHACHA_Finish ( CRYS_CHACHAUserContext_t *pContextID, uint8_t *pDataIn, uint32_t dataInSize, uint8_t *pDataOut)
This function is used to process the remaining data of CHACHA. The data in size should be smaller than chacha block size. More...
CRYSError_t CRYS_CHACHA_Free ( CRYS_CHACHAUserContext_t *pContextID)
This function is used to free the context of CHACHA operations. More...
CRYSError_t CRYS_CHACHA ( CRYS_CHACHA_Nonce_t pNonce, CRYS_CHACHA_NonceSize_t nonceSize, CRYS_CHACHA_Key_t pKey, uint32_t initialCounter, CRYS_CHACHA_EncryptMode_t encryptDecryptFlag, uint8_t *pDataIn, uint32_t dataInSize, uint8_t *pDataOut)
This function is used to perform the CHACHA operation in one integrated process. More...

Detailed Description

Macro Definition Documentation

#define CRYS_CHACHA_BLOCK_SIZE_IN_BYTES   ( CRYS_CHACHA_BLOCK_SIZE_IN_WORDS * sizeof(uint32_t))

CHACHA block size in bytes.

#define CRYS_CHACHA_BLOCK_SIZE_IN_WORDS   16

CHACHA block size in words.

#define CRYS_CHACHA_KEY_MAX_SIZE_IN_BYTES   ( CRYS_CHACHA_KEY_MAX_SIZE_IN_WORDS * sizeof(uint32_t))

CHACHA KEY maximal size in bytes.

#define CRYS_CHACHA_KEY_MAX_SIZE_IN_WORDS   8

CHACHA KEY maximal size in words.

#define CRYS_CHACHA_NONCE_MAX_SIZE_IN_BYTES   ( CRYS_CHACHA_NONCE_MAX_SIZE_IN_WORDS * sizeof(uint32_t))

Nonce buffer max size in bytes.

#define CRYS_CHACHA_NONCE_MAX_SIZE_IN_WORDS   3

Nonce buffer max size in words.

#define CRYS_CHACHA_USER_CTX_SIZE_IN_WORDS   17

CHACHA user's context size in words.

Typedef Documentation

typedef uint8_t CRYS_CHACHA_Key_t[(8 *sizeof(uint32_t))]

Defines the CHACHA key buffer.

typedef uint8_t CRYS_CHACHA_Nonce_t[(3 *sizeof(uint32_t))]

Defines the Nonce buffer 12 bytes array.

The user's context prototype - the argument type that is passed by the user to the CHACHA API. The context saves the state of the operation and must be saved by the user till the end of the APIs flow (for example till CRYS_CHACHA_Free is called).

Enumeration Type Documentation

Enum defining the CHACHA Encrypt or Decrypt operation mode.

Enumerator
CRYS_CHACHA_Encrypt

CHACHA encrypt mode.

CRYS_CHACHA_Decrypt

CHACHA decrypt mode.

CRYS_CHACHA_EncryptNumOfOptions

CHACHA maximal number of operations (encrypt/decrypt).

CRYS_CHACHA_EncryptModeLast

Reserved.

Enum defining the CHACHA Nonce size in bits.

Enumerator
CRYS_CHACHA_Nonce64BitSize

64 bit Nonce size.

CRYS_CHACHA_Nonce96BitSize

96 bit Nonce size.

CRYS_CHACHA_NonceSizeNumOfOptions

CHACHA maximal number of nonce sizes.

CRYS_CHACHA_NonceSizeLast

Reserved.

Function Documentation

CRYSError_t CRYS_CHACHA ( CRYS_CHACHA_Nonce_t pNonce ,
CRYS_CHACHA_NonceSize_t nonceSize ,
CRYS_CHACHA_Key_t pKey ,
uint32_t initialCounter ,
CRYS_CHACHA_EncryptMode_t encryptDecryptFlag ,
uint8_t * pDataIn ,
uint32_t dataInSize ,
uint8_t * pDataOut
)

This function is used to perform the CHACHA operation in one integrated process.

Returns
CRYS_OK on success.
A non-zero value on failure as defined crys_chacha_error.h.
Parameters
[in] pNonce A buffer containing an nonce.
[in] nonceSize Enumerator defining the nonce size (only 64 and 96 bit are valid).
[in] pKey A pointer to the user's key buffer.
[in] initialCounter An initial counter.
[in] encryptDecryptFlag A flag specifying whether the CHACHA should perform an Encrypt operation or a Decrypt operation.
[in] pDataIn A pointer to the buffer of the input data to the CHACHA. The pointer does not need to be aligned. must not be null.
[in] dataInSize The size of the input data. must not be 0.
[out] pDataOut A pointer to the buffer of the output data from the CHACHA. The pointer does not need to be aligned. must not be null.
CRYSError_t CRYS_CHACHA_Block ( CRYS_CHACHAUserContext_t * pContextID ,
uint8_t * pDataIn ,
uint32_t dataInSize ,
uint8_t * pDataOut
)

This function is used to process aligned blocks of CHACHA. The data in size should be a multiple of chacha block size.

Returns
CRYS_OK on success.
A non-zero value on failure as defined crys_chacha_error.h.
Parameters
[in] pContextID Pointer to the context buffer.
[in] pDataIn A pointer to the buffer of the input data to the CHACHA. The pointer does not need to be aligned. must not be null.
[in] dataInSize The size of the input data. Must be a multiple of CRYS_CHACHA_BLOCK_SIZE_IN_BYTES bytes and must not be 0.
[out] pDataOut A pointer to the buffer of the output data from the CHACHA. The pointer does not need to be aligned. must not be null.
CRYSError_t CRYS_CHACHA_Finish ( CRYS_CHACHAUserContext_t * pContextID ,
uint8_t * pDataIn ,
uint32_t dataInSize ,
uint8_t * pDataOut
)

This function is used to process the remaining data of CHACHA. The data in size should be smaller than chacha block size.

Returns
CRYS_OK on success.
A non-zero value on failure as defined crys_chacha_error.h.
Parameters
[in] pContextID Pointer to the context buffer.
[in] pDataIn A pointer to the buffer of the input data to the CHACHA. The pointer does not need to be aligned. If dataInSize = 0, input buffer is not required.
[in] dataInSize The size of the input data. zero and non multiple of CRYS_CHACHA_BLOCK_SIZE_IN_BYTES are valid.
[out] pDataOut A pointer to the buffer of the output data from the CHACHA. The pointer does not need to be aligned. If dataInSize = 0, output buffer is not required.
CRYSError_t CRYS_CHACHA_Free ( CRYS_CHACHAUserContext_t * pContextID )

This function is used to free the context of CHACHA operations.

Returns
CRYS_OK on success.
A non-zero value on failure as defined crys_chacha_error.h.
Parameters
[in] pContextID Pointer to the context buffer.
CRYSError_t CRYS_CHACHA_Init ( CRYS_CHACHAUserContext_t * pContextID ,
CRYS_CHACHA_Nonce_t pNonce ,
CRYS_CHACHA_NonceSize_t nonceSize ,
CRYS_CHACHA_Key_t pKey ,
uint32_t initialCounter ,
CRYS_CHACHA_EncryptMode_t EncryptDecryptFlag
)

This function is used to initialize the context for CHACHA operations.

Returns
CRYS_OK on success.
A non-zero value on failure as defined crys_chacha_error.h.
Parameters
[in] pContextID Pointer to the CHACHA context buffer that is allocated by the user and is used for the CHACHA operation.
[in] pNonce A buffer containing an nonce.
[in] nonceSize Enumerator defining the nonce size (only 64 and 96 bit are valid).
[in] pKey A pointer to the user's key buffer.
[in] initialCounter An initial counter.
[in] EncryptDecryptFlag A flag specifying whether the CHACHA should perform an Encrypt operation or a Decrypt operation.