https://github.com/torvalds/linux
Raw File
Tip revision: ce522ba9ef7e2d9fb22a39eb3371c0c64e2a433e authored by Linus Torvalds on 11 April 2022, 00:21:36 UTC
Linux 5.18-rc2
Tip revision: ce522ba
blake2s-glue.c
// SPDX-License-Identifier: GPL-2.0-or-later

#include <crypto/internal/blake2s.h>
#include <linux/module.h>

/* defined in blake2s-core.S */
EXPORT_SYMBOL(blake2s_compress);
back to top