alg-sha512.h 357 B

1234567891011
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /* Copyright (C) 2020 Steffen Jaeckel <jaeckel-floss@eyet-services.de> */
  3. #include "u-boot/sha512.h"
  4. #define INCLUDE_sha512crypt 1
  5. #define SHA512_CTX sha512_context
  6. #define SHA512_Init sha512_starts
  7. #define SHA512_Update(c, i, l) sha512_update(c, (const void *)i, l)
  8. #define SHA512_Final(b, c) sha512_finish(c, b)