mbed TLS v2.2.0
sha256_alt.h
Go to the documentation of this file.
1 
21 #ifndef MBEDTLS_SHA256_ALT_H
22 #define MBEDTLS_SHA256_ALT_H
23 
24 #if !defined(MBEDTLS_CONFIG_FILE)
25 #include "config.h"
26 #else
27 #include MBEDTLS_CONFIG_FILE
28 #endif
29 
30 /***************************************************************************/
35 /***************************************************************************/
41 #if defined(MBEDTLS_SHA256_ALT)
42 
43 /* SiliconLabs CRYPTO hardware acceleration implementation */
44 
45 #include "sl_crypto.h"
46 #include <stddef.h>
47 #include <stdint.h>
48 
49 #define MBEDTLS_ERR_SHA256_BAD_INPUT -0x5100
51 #ifdef __cplusplus
52 extern "C" {
53 #endif
54 
58 typedef struct
59 {
60 #if defined( MBEDTLS_SLCL_PLUGINS )
61  CRYPTODRV_Context_t cryptodrv_ctx;
62 #else
63  uint32_t state[8];
64 #endif
65  uint32_t total[2];
66  unsigned char buffer[64];
67  int is224;
68 }
70 
77 
84 
85 #if defined( MBEDTLS_SLCL_PLUGINS )
86 
104 int mbedtls_sha256_set_device_instance(mbedtls_sha256_context *ctx,
105  unsigned int devno);
106 
124 int mbedtls_sha256_set_device_lock_wait_ticks(mbedtls_sha256_context *ctx,
125  int ticks);
126 
127 #endif /* #if defined( MBEDTLS_SLCL_PLUGINS ) */
128 
136  const mbedtls_sha256_context *src );
137 
144 int mbedtls_sha256_starts( mbedtls_sha256_context *ctx, int is224 );
145 
153 void mbedtls_sha256_update( mbedtls_sha256_context *ctx, const unsigned char *input,
154  size_t ilen );
155 
162 void mbedtls_sha256_finish( mbedtls_sha256_context *ctx, unsigned char output[32] );
163 
164 /* Internal use */
165 void mbedtls_sha256_process( mbedtls_sha256_context *ctx, const unsigned char data[64] );
166 
180 int mbedtls_sha256( const unsigned char *input, size_t ilen,
181  unsigned char output[32], int is224 );
182 
188 int mbedtls_sha256_self_test( int verbose, int device_instance );
189 
190 #ifdef __cplusplus
191 }
192 #endif
193 
194 #endif /* #if defined(MBEDTLS_SHA256_ALT) */
195 
199 #endif /* #ifndef MBEDTLS_SHA256_ALT_H */
Compatibility names (set of defines)
void mbedtls_sha256_clone(mbedtls_sha256_context *dst, const mbedtls_sha256_context *src)
Clone (the state of) a SHA-256 context.
void mbedtls_sha256_process(mbedtls_sha256_context *ctx, const unsigned char data[64])
int mbedtls_sha256_self_test(int verbose, int device_instance)
Checkup routine.
void mbedtls_sha256_init(mbedtls_sha256_context *ctx)
Initialize SHA-256 context.
void mbedtls_sha256_finish(mbedtls_sha256_context *ctx, unsigned char output[32])
SHA-256 final digest.
int mbedtls_sha256(const unsigned char *input, size_t ilen, unsigned char output[32], int is224)
Output = SHA-256( input buffer )
SHA-256 context structure.
Definition: sha256_alt.h:58
CRYPTODRV operation context.
Definition: cryptodrv.h:98
int mbedtls_sha256_starts(mbedtls_sha256_context *ctx, int is224)
SHA-256 context setup.
void mbedtls_sha256_update(mbedtls_sha256_context *ctx, const unsigned char *input, size_t ilen)
SHA-256 process buffer.
void mbedtls_sha256_free(mbedtls_sha256_context *ctx)
Clear SHA-256 context.
Silicon Labs specific mbedTLS defintitions.