linux/crypto/cast_common.c

// SPDX-License-Identifier: GPL-2.0-or-later
/*
 * Common lookup tables for CAST-128 (cast5) and CAST-256 (cast6)
 *
 * Copyright © 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
 * Copyright © 2003 Kartikey Mahendra Bhatt <[email protected]>
 * Copyright © 2012 Jussi Kivilinna <[email protected]>
 */

#include <linux/module.h>
#include <crypto/cast_common.h>

__visible const u32 cast_s1[256] =;
EXPORT_SYMBOL_GPL();

__visible const u32 cast_s2[256] =;
EXPORT_SYMBOL_GPL();

__visible const u32 cast_s3[256] =;
EXPORT_SYMBOL_GPL();

__visible const u32 cast_s4[256] =;
EXPORT_SYMBOL_GPL();

MODULE_DESCRIPTION();
MODULE_LICENSE();