mbed TLS v2.2.0
sha1_alt.h
Go to the documentation of this file.
1 
21 #ifndef MBEDTLS_SHA1_ALT_H
22 #define MBEDTLS_SHA1_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_SHA1_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_SHA1_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 }
69 
76 
83 
84 #if defined( MBEDTLS_SLCL_PLUGINS )
85 
103 int mbedtls_sha1_set_device_instance(mbedtls_sha1_context* ctx,
104  unsigned int devno);
105 
123 int mbedtls_sha1_set_device_lock_wait_ticks(mbedtls_sha1_context *ctx,
124  int ticks);
125 
126 #endif /* #if defined( MBEDTLS_SLCL_PLUGINS ) */
127 
135  const mbedtls_sha1_context *src );
136 
143 
151 void mbedtls_sha1_update( mbedtls_sha1_context *ctx, const unsigned char *input, size_t ilen );
152 
159 void mbedtls_sha1_finish( mbedtls_sha1_context *ctx, unsigned char output[20] );
160 
161 /* Internal use */
162 void mbedtls_sha1_process( mbedtls_sha1_context *ctx, const unsigned char data[64] );
163 
176 int mbedtls_sha1( const unsigned char *input, size_t ilen,
177  unsigned char output[20]);
178 
184 int mbedtls_sha1_self_test( int verbose, int device_instance );
185 
186 #ifdef __cplusplus
187 }
188 #endif
189 
190 #endif /* #if defined(MBEDTLS_SHA1_ALT) */
191 
195 #endif /* #ifndef MBEDTLS_SHA1_ALT_H */
int mbedtls_sha1(const unsigned char *input, size_t ilen, unsigned char output[20])
Output = SHA-1( input buffer )
Compatibility names (set of defines)
void mbedtls_sha1_update(mbedtls_sha1_context *ctx, const unsigned char *input, size_t ilen)
SHA-1 process buffer.
int mbedtls_sha1_starts(mbedtls_sha1_context *ctx)
SHA-1 context setup.
void mbedtls_sha1_init(mbedtls_sha1_context *ctx)
Initialize SHA-1 context.
void mbedtls_sha1_finish(mbedtls_sha1_context *ctx, unsigned char output[20])
SHA-1 final digest.
CRYPTODRV operation context.
Definition: cryptodrv.h:98
void mbedtls_sha1_process(mbedtls_sha1_context *ctx, const unsigned char data[64])
SHA-1 context structure.
Definition: sha1_alt.h:58
void mbedtls_sha1_clone(mbedtls_sha1_context *dst, const mbedtls_sha1_context *src)
Clone (the state of) a SHA-1 context.
Silicon Labs specific mbedTLS defintitions.
int mbedtls_sha1_self_test(int verbose, int device_instance)
Checkup routine.
void mbedtls_sha1_free(mbedtls_sha1_context *ctx)
Clear SHA-1 context.