Knight KE / Mbed OS Game_Master
Embed: (wiki syntax)

« Back to documentation index

sha256.h File Reference

sha256.h File Reference

This file contains SHA-224 and SHA-256 definitions and functions. More...

Go to the source code of this file.

Data Structures

struct  mbedtls_sha256_context
 SHA-256 context structure. More...

Functions

void mbedtls_sha256_init (mbedtls_sha256_context *ctx)
 This function initializes a SHA-256 context.
void mbedtls_sha256_free (mbedtls_sha256_context *ctx)
 This function clears a SHA-256 context.
void mbedtls_sha256_clone (mbedtls_sha256_context *dst, const mbedtls_sha256_context *src)
 This function clones the state of a SHA-256 context.
int mbedtls_sha256_starts_ret (mbedtls_sha256_context *ctx, int is224)
 This function starts a SHA-224 or SHA-256 checksum calculation.
int mbedtls_sha256_update_ret (mbedtls_sha256_context *ctx, const unsigned char *input, size_t ilen)
 This function feeds an input buffer into an ongoing SHA-256 checksum calculation.
int mbedtls_sha256_finish_ret (mbedtls_sha256_context *ctx, unsigned char output[32])
 This function finishes the SHA-256 operation, and writes the result to the output buffer.
int mbedtls_internal_sha256_process (mbedtls_sha256_context *ctx, const unsigned char data[64])
 This function processes a single data block within the ongoing SHA-256 computation.
MBEDTLS_DEPRECATED void mbedtls_sha256_starts (mbedtls_sha256_context *ctx, int is224)
 This function starts a SHA-224 or SHA-256 checksum calculation.
MBEDTLS_DEPRECATED void mbedtls_sha256_update (mbedtls_sha256_context *ctx, const unsigned char *input, size_t ilen)
 This function feeds an input buffer into an ongoing SHA-256 checksum calculation.
MBEDTLS_DEPRECATED void mbedtls_sha256_finish (mbedtls_sha256_context *ctx, unsigned char output[32])
 This function finishes the SHA-256 operation, and writes the result to the output buffer.
MBEDTLS_DEPRECATED void mbedtls_sha256_process (mbedtls_sha256_context *ctx, const unsigned char data[64])
 This function processes a single data block within the ongoing SHA-256 computation.
int mbedtls_sha256_ret (const unsigned char *input, size_t ilen, unsigned char output[32], int is224)
 This function calculates the SHA-224 or SHA-256 checksum of a buffer.
MBEDTLS_DEPRECATED void mbedtls_sha256 (const unsigned char *input, size_t ilen, unsigned char output[32], int is224)
 This function calculates the SHA-224 or SHA-256 checksum of a buffer.
int mbedtls_sha256_self_test (int verbose)
 The SHA-224 and SHA-256 checkup routine.

Detailed Description

This file contains SHA-224 and SHA-256 definitions and functions.

The Secure Hash Algorithms 224 and 256 (SHA-224 and SHA-256) cryptographic hash functions are defined in FIPS 180-4: Secure Hash Standard (SHS).

Definition in file sha256.h.


Function Documentation

int mbedtls_internal_sha256_process ( mbedtls_sha256_context ctx,
const unsigned char  data[64] 
)

This function processes a single data block within the ongoing SHA-256 computation.

This function is for internal use only.

Parameters:
ctxThe SHA-256 context.
dataThe buffer holding one block of data.
Returns:
0 on success.

Definition at line 54 of file sha256_alt.c.

MBEDTLS_DEPRECATED void mbedtls_sha256 ( const unsigned char *  input,
size_t  ilen,
unsigned char  output[32],
int  is224 
)

This function calculates the SHA-224 or SHA-256 checksum of a buffer.

The function allocates the context, performs the calculation, and frees the context.

The SHA-256 result is calculated as output = SHA-256(input buffer).

Parameters:
inputThe buffer holding the data.
ilenThe length of the input data.
outputThe SHA-224 or SHA-256 checksum result.
is224Determines which function to use: 0: Use SHA-256, or 1: Use SHA-224.

Definition at line 402 of file sha256.c.

void mbedtls_sha256_clone ( mbedtls_sha256_context dst,
const mbedtls_sha256_context src 
)

This function clones the state of a SHA-256 context.

Parameters:
dstThe destination context.
srcThe context to clone.

Definition at line 39 of file sha256_alt.c.

MBEDTLS_DEPRECATED void mbedtls_sha256_finish ( mbedtls_sha256_context ctx,
unsigned char  output[32] 
)

This function finishes the SHA-256 operation, and writes the result to the output buffer.

Parameters:
ctxThe SHA-256 context.
outputThe SHA-224 or SHA-256 checksum result.
Parameters:
ctxThe SHA-256 context.
outputThe SHA-224or SHA-256 checksum result.

Definition at line 364 of file sha256.c.

int mbedtls_sha256_finish_ret ( mbedtls_sha256_context ctx,
unsigned char  output[32] 
)

This function finishes the SHA-256 operation, and writes the result to the output buffer.

Parameters:
ctxThe SHA-256 context.
outputThe SHA-224 or SHA-256 checksum result.
Returns:
0 on success.

Definition at line 71 of file sha256_alt.c.

void mbedtls_sha256_free ( mbedtls_sha256_context ctx )

This function clears a SHA-256 context.

Parameters:
ctxThe SHA-256 context to clear.

Definition at line 31 of file sha256_alt.c.

void mbedtls_sha256_init ( mbedtls_sha256_context ctx )

This function initializes a SHA-256 context.

Parameters:
ctxThe SHA-256 context to initialize.

Definition at line 25 of file sha256_alt.c.

MBEDTLS_DEPRECATED void mbedtls_sha256_process ( mbedtls_sha256_context ctx,
const unsigned char  data[64] 
)

This function processes a single data block within the ongoing SHA-256 computation.

This function is for internal use only.

Parameters:
ctxThe SHA-256 context.
dataThe buffer holding one block of data.

Definition at line 247 of file sha256.c.

int mbedtls_sha256_ret ( const unsigned char *  input,
size_t  ilen,
unsigned char  output[32],
int  is224 
)

This function calculates the SHA-224 or SHA-256 checksum of a buffer.

The function allocates the context, performs the calculation, and frees the context.

The SHA-256 result is calculated as output = SHA-256(input buffer).

Parameters:
inputThe buffer holding the input data.
ilenThe length of the input data.
outputThe SHA-224 or SHA-256 checksum result.
is224Determines which function to use: 0: Use SHA-256, or 1: Use SHA-224.

Definition at line 376 of file sha256.c.

int mbedtls_sha256_self_test ( int  verbose )

The SHA-224 and SHA-256 checkup routine.

Returns:
0 on success.
1 on failure.

Definition at line 465 of file sha256.c.

MBEDTLS_DEPRECATED void mbedtls_sha256_starts ( mbedtls_sha256_context ctx,
int  is224 
)

This function starts a SHA-224 or SHA-256 checksum calculation.

Parameters:
ctxThe context to initialize.
is224Determines which function to use: 0: Use SHA-256, or 1: Use SHA-224.

This function starts a SHA-224 or SHA-256 checksum calculation.

Parameters:
ctxThe SHA-256 context to initialize.
is224Determines which function to use.

  • 0: Use SHA-256.
  • 1: Use SHA-224.

Definition at line 135 of file sha256.c.

int mbedtls_sha256_starts_ret ( mbedtls_sha256_context ctx,
int  is224 
)

This function starts a SHA-224 or SHA-256 checksum calculation.

Parameters:
ctxThe context to initialize.
is224Determines which function to use: 0: Use SHA-256, or 1: Use SHA-224.
Returns:
0 on success.
Parameters:
ctxThe context to initialize.
is224Determines which function to use.

  • 0: Use SHA-256.
  • 1: Use SHA-224.
Returns:
0 on success.

Definition at line 46 of file sha256_alt.c.

MBEDTLS_DEPRECATED void mbedtls_sha256_update ( mbedtls_sha256_context ctx,
const unsigned char *  input,
size_t  ilen 
)

This function feeds an input buffer into an ongoing SHA-256 checksum calculation.

Parameters:
ctxThe SHA-256 context to initialize.
inputThe buffer holding the data.
ilenThe length of the input data.
Parameters:
ctxThe SHA-256 context to initialize.
inputThe buffer holding the data.
ilenThe length of the input data.

Definition at line 306 of file sha256.c.

int mbedtls_sha256_update_ret ( mbedtls_sha256_context ctx,
const unsigned char *  input,
size_t  ilen 
)

This function feeds an input buffer into an ongoing SHA-256 checksum calculation.

Parameters:
ctxThe SHA-256 context.
inputThe buffer holding the data.
ilenThe length of the input data.
Returns:
0 on success.
Parameters:
ctxSHA-256 context
inputbuffer holding the data
ilenlength of the input data
Returns:
0 on success.

Definition at line 62 of file sha256_alt.c.