MCUX CLNS
MCUX Crypto Library Normal Secure
mcuxClRsa_sign_NoEncode_example.c File Reference

Example of using function mcuxClRsa_sign to perform the RSA signature generation primitive RSASP1 (private exponentiation and NO padding) according to PKCS #1 v2.2, using a key in plain format. More...

#include <mcuxClSession.h>
#include <mcuxClExample_Session_Helper.h>
#include <mcuxCsslFlowProtection.h>
#include <mcuxClCore_FunctionIdentifiers.h>
#include <mcuxClRandom.h>
#include <mcuxClRsa.h>
#include <mcuxClToolchain.h>
#include <mcuxClCore_Examples.h>
#include <mcuxClEls.h>
#include <mcuxClExample_ELS_Helper.h>

Macros

#define RSA_KEY_BIT_LENGTH
 The example uses a 1024-bit key. More...
 
#define RSA_KEY_BYTE_LENGTH
 Converting the key-bitlength to bytelength. More...
 

Functions

static const uint8_t modulus [RSA_KEY_BYTE_LENGTH__attribute__ ((aligned(4)))
 Example value for public RSA modulus N. More...
 
 MCUXCLEXAMPLE_FUNCTION (mcuxClRsa_sign_NoEncode_example)
 Performs a session set-up; a call to function mcuxClRsa_sign using mode mcuxClRsa_Mode_Verify_NoVerify; a session clean-up. More...
 

Detailed Description

Example of using function mcuxClRsa_sign to perform the RSA signature generation primitive RSASP1 (private exponentiation and NO padding) according to PKCS #1 v2.2, using a key in plain format.

Macro Definition Documentation

◆ RSA_KEY_BIT_LENGTH

#define RSA_KEY_BIT_LENGTH

The example uses a 1024-bit key.

◆ RSA_KEY_BYTE_LENGTH

#define RSA_KEY_BYTE_LENGTH

Converting the key-bitlength to bytelength.

Examples
mcuxClRsa_sign_NoEncode_example.c.

Function Documentation

◆ __attribute__()

static const uint8_t modulus [RSA_KEY_BYTE_LENGTH] __attribute__ ( (aligned(4))  )
static

Example value for public RSA modulus N.

Expected signature.

Input message.

Example value for private RSA exponent d.

Examples
mcuxClRsa_sign_NoEncode_example.c.

◆ MCUXCLEXAMPLE_FUNCTION()

MCUXCLEXAMPLE_FUNCTION ( mcuxClRsa_sign_NoEncode_example  )

Performs a session set-up; a call to function mcuxClRsa_sign using mode mcuxClRsa_Mode_Verify_NoVerify; a session clean-up.

Return values
MCUXCLEXAMPLE_STATUS_OKThe example code completed successfully
MCUXCLEXAMPLE_STATUS_ERRORThe example code failed

Initialize ELS, Enable the ELS

Destroy Session and cleanup Session

Disable the ELS

Examples
mcuxClRsa_sign_NoEncode_example.c.