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: Eric Rost <eric.rost@mybabylon.net>
Reviewed-by: Jason Cooper <jason@lakedaemon.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Eric Rost 2014-10-24 17:32:53 -05:00 committed by Greg Kroah-Hartman
parent 24443a244b
commit c17cdeb419
8 changed files with 8 additions and 7 deletions

View file

@ -1,7 +1,7 @@
#
# 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 \

View file

@ -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

View file

@ -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"

View file

@ -15,7 +15,7 @@
************************************************************************/
#include <linux/string.h>
#include "skein.h"
#include "skein_base.h"
#include "skein_block.h"
#ifndef SKEIN_USE_ASM

View file

@ -10,7 +10,7 @@
#ifndef _SKEIN_BLOCK_H_
#define _SKEIN_BLOCK_H_
#include "skein.h" /* get the Skein API definitions */
#include "skein_base.h" /* get the Skein API definitions */
void skein_256_process_block(struct skein_256_ctx *ctx, const u8 *blk_ptr,
size_t blk_cnt, size_t byte_cnt_add);

View file

@ -1,7 +1,7 @@
#ifndef _SKEIN_IV_H_
#define _SKEIN_IV_H_
#include "skein.h" /* get Skein macros and types */
#include "skein_base.h" /* get Skein macros and types */
/*
***************** Pre-computed Skein IVs *******************

View file

@ -29,7 +29,7 @@
*/
#include <linux/types.h>
#include "skein.h"
#include "skein_base.h"
#define KEY_SCHEDULE_CONST 0x1BD11BDAA9FC1A22L