1 2 3 4 5 6 7 8 9 10
/* This file is part of limb https://lila.oss/limb * Copyright (C) 2023 Olivier Brunel jjk@jjacky.com */ /* SPDX-License-Identifier: GPL-2.0-only */ #include "sha3/sha3.h" void sha3_224_init(void *ctx) { sha3_init(224, ctx); }