Home
last modified time | relevance | path

Searched refs:mbedtls_sha512_context (Results 1 – 6 of 6) sorted by relevance

/hal_espressif-latest/components/mbedtls/port/sha/block/
Desp_sha512.c68 void esp_sha512_set_mode(mbedtls_sha512_context *ctx, esp_sha_type type) in esp_sha512_set_mode()
85 void esp_sha512_set_t( mbedtls_sha512_context *ctx, uint16_t t_val) in esp_sha512_set_t()
90 void mbedtls_sha512_init( mbedtls_sha512_context *ctx ) in mbedtls_sha512_init()
94 memset( ctx, 0, sizeof( mbedtls_sha512_context ) ); in mbedtls_sha512_init()
97 void mbedtls_sha512_free( mbedtls_sha512_context *ctx ) in mbedtls_sha512_free()
103 mbedtls_zeroize( ctx, sizeof( mbedtls_sha512_context ) ); in mbedtls_sha512_free()
106 void mbedtls_sha512_clone( mbedtls_sha512_context *dst, in mbedtls_sha512_clone()
107 const mbedtls_sha512_context *src ) in mbedtls_sha512_clone()
109 memcpy(dst, src, sizeof(mbedtls_sha512_context)); in mbedtls_sha512_clone()
115 int mbedtls_sha512_starts( mbedtls_sha512_context *ctx, int is384 ) in mbedtls_sha512_starts()
[all …]
/hal_espressif-latest/components/mbedtls/port/sha/dma/
Desp_sha512.c67 void esp_sha512_set_mode(mbedtls_sha512_context *ctx, esp_sha_type type) in esp_sha512_set_mode()
84 void esp_sha512_set_t( mbedtls_sha512_context *ctx, uint16_t t_val) in esp_sha512_set_t()
89 void mbedtls_sha512_init( mbedtls_sha512_context *ctx ) in mbedtls_sha512_init()
91 memset( ctx, 0, sizeof( mbedtls_sha512_context ) ); in mbedtls_sha512_init()
94 void mbedtls_sha512_free( mbedtls_sha512_context *ctx ) in mbedtls_sha512_free()
100 mbedtls_zeroize( ctx, sizeof( mbedtls_sha512_context ) ); in mbedtls_sha512_free()
103 void mbedtls_sha512_clone( mbedtls_sha512_context *dst, in mbedtls_sha512_clone()
104 const mbedtls_sha512_context *src ) in mbedtls_sha512_clone()
106 memcpy(dst, src, sizeof(mbedtls_sha512_context)); in mbedtls_sha512_clone()
112 int mbedtls_sha512_starts( mbedtls_sha512_context *ctx, int is384 ) in mbedtls_sha512_starts()
[all …]
/hal_espressif-latest/components/mbedtls/port/include/
Dsha512_alt.h53 } mbedtls_sha512_context; typedef
73 } mbedtls_sha512_context;
83 void esp_sha512_set_mode(mbedtls_sha512_context *ctx, esp_sha_type type);
86 void esp_sha512_set_t( mbedtls_sha512_context *ctx, uint16_t t_val);
/hal_espressif-latest/components/mbedtls/port/sha/parallel_engine/
Desp_sha512.c43 inline static esp_sha_type sha_type(const mbedtls_sha512_context *ctx) in sha_type()
88 void mbedtls_sha512_init( mbedtls_sha512_context *ctx ) in mbedtls_sha512_init()
90 memset( ctx, 0, sizeof( mbedtls_sha512_context ) ); in mbedtls_sha512_init()
93 void mbedtls_sha512_free( mbedtls_sha512_context *ctx ) in mbedtls_sha512_free()
102 mbedtls_zeroize( ctx, sizeof( mbedtls_sha512_context ) ); in mbedtls_sha512_free()
105 void mbedtls_sha512_clone( mbedtls_sha512_context *dst, in mbedtls_sha512_clone()
106 const mbedtls_sha512_context *src ) in mbedtls_sha512_clone()
127 int mbedtls_sha512_starts( mbedtls_sha512_context *ctx, int is384 ) in mbedtls_sha512_starts()
210 static void mbedtls_sha512_software_process( mbedtls_sha512_context *ctx, const unsigned char data[… in mbedtls_sha512_software_process()
276 static int esp_internal_sha512_parallel_engine_process( mbedtls_sha512_context *ctx, const unsigned… in esp_internal_sha512_parallel_engine_process()
[all …]
/hal_espressif-latest/components/mbedtls/port/mbedtls_rom/
Dmbedtls_rom_osi.h305 void (*_rom_mbedtls_sha512_init)( mbedtls_sha512_context *ctx );
306 void (*_rom_mbedtls_sha512_free)( mbedtls_sha512_context *ctx );
307 …void (*_rom_mbedtls_sha512_clone)( mbedtls_sha512_context *dst, const mbedtls_sha512_context *src …
308 int (*_rom_mbedtls_sha512_starts)( mbedtls_sha512_context *ctx, int is384 );
309 …int (*_rom_mbedtls_sha512_update)( mbedtls_sha512_context *ctx, const unsigned char *input, size_t…
310 int (*_rom_mbedtls_sha512_finish)( mbedtls_sha512_context *ctx, unsigned char output[64] );
311 …int (*_rom_mbedtls_internal_sha512_process)( mbedtls_sha512_context *ctx, const unsigned char data…
489 void (*_rom_mbedtls_sha512_init)(mbedtls_sha512_context *ctx);
490 void (*_rom_mbedtls_sha512_free)(mbedtls_sha512_context *ctx);
491 … void (*_rom_mbedtls_sha512_clone)(mbedtls_sha512_context *dst, const mbedtls_sha512_context *src);
[all …]
/hal_espressif-latest/components/mbedtls/port/sha/
Desp_sha.c38 mbedtls_sha512_context sha512; in esp_sha()