Commit c17cdeb4 authored by Eric Rost's avatar Eric Rost Committed by Greg Kroah-Hartman
Browse files

staging: skein: Renames skein to skein_base



Renames skein.c to skein_base.c and skein.h to skein_base.h in
preparation for naming loadable module skein.ko

Signed-off-by: default avatarEric Rost <eric.rost@mybabylon.net>
Reviewed-by: default avatarJason Cooper <jason@lakedaemon.net>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 24443a24
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
#
# Makefile for the skein secure hash algorithm
#
obj-$(CONFIG_CRYPTO_SKEIN) += skein.o \
obj-$(CONFIG_CRYPTO_SKEIN) += skein_base.o \
			      skein_api.o \
			      skein_block.o \
			      threefish_block.o \
+1 −1
Original line number Diff line number Diff line
@@ -79,7 +79,7 @@ OTHER DEALINGS IN THE SOFTWARE.
 */

#include <linux/types.h>
#include "skein.h"
#include "skein_base.h"

/**
 * Which Skein size to use
+2 −1
Original line number Diff line number Diff line
@@ -11,7 +11,8 @@
#define  SKEIN_PORT_CODE /* instantiate any code in skein_port.h */

#include <linux/string.h>       /* get the memcpy/memset functions */
#include "skein.h" /* get the Skein API definitions   */
#include <linux/export.h>
#include "skein_base.h" /* get the Skein API definitions   */
#include "skein_iv.h"    /* get precomputed IVs */
#include "skein_block.h"

+1 −1
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@
************************************************************************/

#include <linux/string.h>
#include "skein.h"
#include "skein_base.h"
#include "skein_block.h"

#ifndef SKEIN_USE_ASM
Loading