sha3_generic.c (75bf465f0bc33e9b776a46d6a1b9b990f5fb7c37) | sha3_generic.c (9332a9e73918bd0a1d5ef40a3357931b9fe0cf8a) |
---|---|
1// SPDX-License-Identifier: GPL-2.0-or-later 2/* 3 * Cryptographic API. 4 * 5 * SHA-3, as specified in | 1// SPDX-License-Identifier: GPL-2.0-or-later 2/* 3 * Cryptographic API. 4 * 5 * SHA-3, as specified in |
6 * http://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.202.pdf | 6 * https://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.202.pdf |
7 * 8 * SHA-3 code by Jeff Garzik <jeff@garzik.org> 9 * Ard Biesheuvel <ard.biesheuvel@linaro.org> 10 */ 11#include <crypto/internal/hash.h> 12#include <linux/init.h> 13#include <linux/module.h> 14#include <linux/types.h> --- 291 unchanged lines hidden --- | 7 * 8 * SHA-3 code by Jeff Garzik <jeff@garzik.org> 9 * Ard Biesheuvel <ard.biesheuvel@linaro.org> 10 */ 11#include <crypto/internal/hash.h> 12#include <linux/init.h> 13#include <linux/module.h> 14#include <linux/types.h> --- 291 unchanged lines hidden --- |