nptl: remove asm from sysdep-cancel.h
[uclibc-ng.git] / libcrypt / sha512.h
blobc1280074bd569527d9dab07aea3438f1459d5f24
1 /* Declaration of functions and data types used for SHA512 sum computing
2 library functions.
3 Copyright (C) 2007 Free Software Foundation, Inc.
4 This file is part of the GNU C Library.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, see
18 <http://www.gnu.org/licenses/>. */
20 #ifndef _SHA512_H
21 #define _SHA512_H 1
23 #include <limits.h>
24 #include <stdint.h>
25 #include <stdio.h>
28 /* Structure to save state of computation between the single steps. */
29 struct sha512_ctx
31 uint64_t H[8];
33 uint64_t total[2];
34 uint64_t buflen;
35 char buffer[256] __attribute__ ((__aligned__ (__alignof__ (uint64_t))));
38 /* Initialize structure containing state of computation.
39 (FIPS 180-2: 5.3.3) */
40 extern void __sha512_init_ctx (struct sha512_ctx *ctx) attribute_hidden;
42 /* Starting with the result of former calls of this function (or the
43 initialization function update the context for the next LEN bytes
44 starting at BUFFER.
45 It is NOT required that LEN is a multiple of 128. */
46 extern void __sha512_process_bytes (const void *buffer, size_t len,
47 struct sha512_ctx *ctx) attribute_hidden;
49 /* Process the remaining bytes in the buffer and put result from CTX
50 in first 64 bytes following RESBUF.
52 IMPORTANT: On some systems it is required that RESBUF is correctly
53 aligned for a 64 bits value. */
54 extern void *__sha512_finish_ctx (struct sha512_ctx *ctx, void *resbuf)
55 attribute_hidden;
57 #endif /* sha512.h */