]> Git Repo - J-u-boot.git/blob - lib/crypt/alg-sha256.h
Merge tag 'u-boot-imx-master-20250127' of https://gitlab.denx.de/u-boot/custodians...
[J-u-boot.git] / lib / crypt / alg-sha256.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /* Copyright (C) 2020 Steffen Jaeckel <[email protected]> */
3
4 #include "u-boot/sha256.h"
5
6 #define INCLUDE_sha256crypt 1
7
8 #define SHA256_CTX sha256_context
9 #define SHA256_Init sha256_starts
10 #define SHA256_Update(c, i, l) sha256_update(c, (const void *)i, l)
11 #define SHA256_Final(b, c) sha256_finish(c, b)
This page took 0.029399 seconds and 4 git commands to generate.