staging: crypto: skein: fix leading whitespace
Signed-off-by: Jason Cooper <jason@lakedaemon.net> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
e6d336f5c6
commit
39bd42b085
|
@ -4,7 +4,6 @@
|
|||
|
||||
void threefishEncrypt1024(struct threefish_key *keyCtx, u64 *input, u64 *output)
|
||||
{
|
||||
|
||||
u64 b0 = input[0], b1 = input[1],
|
||||
b2 = input[2], b3 = input[3],
|
||||
b4 = input[4], b5 = input[5],
|
||||
|
@ -686,7 +685,6 @@ void threefishEncrypt1024(struct threefish_key *keyCtx, u64 *input, u64 *output)
|
|||
|
||||
void threefishDecrypt1024(struct threefish_key *keyCtx, u64 *input, u64 *output)
|
||||
{
|
||||
|
||||
u64 b0 = input[0], b1 = input[1],
|
||||
b2 = input[2], b3 = input[3],
|
||||
b4 = input[4], b5 = input[5],
|
||||
|
|
|
@ -4,7 +4,6 @@
|
|||
|
||||
void threefishEncrypt256(struct threefish_key *keyCtx, u64 *input, u64 *output)
|
||||
{
|
||||
|
||||
u64 b0 = input[0], b1 = input[1],
|
||||
b2 = input[2], b3 = input[3];
|
||||
u64 k0 = keyCtx->key[0], k1 = keyCtx->key[1],
|
||||
|
|
|
@ -4,7 +4,6 @@
|
|||
|
||||
void threefishEncrypt512(struct threefish_key *keyCtx, u64 *input, u64 *output)
|
||||
{
|
||||
|
||||
u64 b0 = input[0], b1 = input[1],
|
||||
b2 = input[2], b3 = input[3],
|
||||
b4 = input[4], b5 = input[5],
|
||||
|
@ -318,7 +317,6 @@ void threefishEncrypt512(struct threefish_key *keyCtx, u64 *input, u64 *output)
|
|||
|
||||
void threefishDecrypt512(struct threefish_key *keyCtx, u64 *input, u64 *output)
|
||||
{
|
||||
|
||||
u64 b0 = input[0], b1 = input[1],
|
||||
b2 = input[2], b3 = input[3],
|
||||
b4 = input[4], b5 = input[5],
|
||||
|
|
Loading…
Reference in New Issue