/* MIT License1*2* Copyright (c) 2016-2022 INRIA, CMU and Microsoft Corporation3* Copyright (c) 2022-2023 HACL* Contributors4*5* Permission is hereby granted, free of charge, to any person obtaining a copy6* of this software and associated documentation files (the "Software"), to deal7* in the Software without restriction, including without limitation the rights8* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell9* copies of the Software, and to permit persons to whom the Software is10* furnished to do so, subject to the following conditions:11*12* The above copyright notice and this permission notice shall be included in all13* copies or substantial portions of the Software.14*15* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR16* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,17* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE18* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER19* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,20* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE21* SOFTWARE.22*/232425#ifndef __Hacl_Hash_SHA1_H26#define __Hacl_Hash_SHA1_H2728#if defined(__cplusplus)29extern "C" {30#endif3132#include <string.h>33#include "krml/types.h"34#include "krml/lowstar_endianness.h"35#include "krml/internal/target.h"3637#include "Hacl_Streaming_Types.h"3839typedef Hacl_Streaming_MD_state_32 Hacl_Streaming_SHA1_state;4041Hacl_Streaming_MD_state_32 *Hacl_Streaming_SHA1_legacy_create_in(void);4243void Hacl_Streaming_SHA1_legacy_init(Hacl_Streaming_MD_state_32 *s);4445/**460 = success, 1 = max length exceeded47*/48Hacl_Streaming_Types_error_code49Hacl_Streaming_SHA1_legacy_update(Hacl_Streaming_MD_state_32 *p, uint8_t *data, uint32_t len);5051void Hacl_Streaming_SHA1_legacy_finish(Hacl_Streaming_MD_state_32 *p, uint8_t *dst);5253void Hacl_Streaming_SHA1_legacy_free(Hacl_Streaming_MD_state_32 *s);5455Hacl_Streaming_MD_state_32 *Hacl_Streaming_SHA1_legacy_copy(Hacl_Streaming_MD_state_32 *s0);5657void Hacl_Streaming_SHA1_legacy_hash(uint8_t *input, uint32_t input_len, uint8_t *dst);5859#if defined(__cplusplus)60}61#endif6263#define __Hacl_Hash_SHA1_H_DEFINED64#endif656667