mirror of
https://git.sr.ht/~lattis/muon
synced 2026-01-29 19:04:20 +00:00
14 lines
273 B
C
14 lines
273 B
C
/*
|
|
* SPDX-FileCopyrightText: Stone Tickle <lattis@mochiro.moe>
|
|
* SPDX-License-Identifier: GPL-3.0-only
|
|
*/
|
|
|
|
#ifndef MUON_SHA_256_H
|
|
#define MUON_SHA_256_H
|
|
|
|
#include <stdint.h>
|
|
#include <stddef.h>
|
|
|
|
void calc_sha_256(uint8_t hash[32], const void *input, size_t len);
|
|
#endif
|