Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a0d5dd84 authored by Jason Cooper's avatar Jason Cooper Committed by Greg Kroah-Hartman
Browse files

staging: crypto: skein: cleanup whitespace around operators/punc.

parent cd4811a6
Loading
Loading
Loading
Loading
+255 −258
Original line number Diff line number Diff line
@@ -41,8 +41,7 @@
#if !(SKEIN_USE_ASM & 256)
void Skein_256_Process_Block(struct skein_256_ctx *ctx, const u8 *blkPtr, size_t blkCnt, size_t byteCntAdd)
    { /* do it in C */
    enum
        {
    enum {
        WCNT = SKEIN_256_STATE_WORDS
        };
#undef  RCNT
@@ -226,8 +225,7 @@ unsigned int Skein_256_Unroll_Cnt(void)
#if !(SKEIN_USE_ASM & 512)
void Skein_512_Process_Block(struct skein_512_ctx *ctx, const u8 *blkPtr, size_t blkCnt, size_t byteCntAdd)
    { /* do it in C */
    enum
        {
    enum {
        WCNT = SKEIN_512_STATE_WORDS
        };
#undef  RCNT
@@ -434,8 +432,7 @@ unsigned int Skein_512_Unroll_Cnt(void)
#if !(SKEIN_USE_ASM & 1024)
void Skein1024_Process_Block(struct skein1024_ctx *ctx, const u8 *blkPtr, size_t blkCnt, size_t byteCntAdd)
    { /* do it in C, always looping (unrolled is bigger AND slower!) */
    enum
        {
    enum {
        WCNT = SKEIN1024_STATE_WORDS
        };
#undef  RCNT
@@ -579,7 +576,7 @@ void Skein1024_Process_Block(struct skein1024_ctx *ctx,const u8 *blkPtr,size_t b
    X15   += ks[r + (R) + 15] +         r + (R);                          \
    ks[r  +         (R) + 16] = ks[r + (R) - 1]; /* rotate key schedule */\
    ts[r  +         (R) +  2] = ts[r + (R) - 1];                          \
    Skein_Show_R_Ptr(BLK_BITS,&ctx->h,SKEIN_RND_KEY_INJECT,Xptr);
    Skein_Show_R_Ptr(BLK_BITSi, &ctx->h, SKEIN_RND_KEY_INJECT, Xptr);

    for (r = 1; r <= 2 * RCNT; r += 2 * SKEIN_UNROLL_1024)    /* loop thru it */
#endif  
+176 −176

File changed.

Contains only whitespace changes.

+11 −11

File changed.

Contains only whitespace changes.

+10 −10

File changed.

Contains only whitespace changes.

+84 −84

File changed.

Contains only whitespace changes.

+112 −112

File changed.

Contains only whitespace changes.

Loading