Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 43167
b: refs/heads/master
c: 9ebed9d
h: refs/heads/master
i:
  43165: dabb230
  43163: b8b1067
  43159: 503ee8e
  43151: 5c107d2
  43135: 368ef0d
v: v3
  • Loading branch information
David S. Miller committed Dec 7, 2006
1 parent 6844921 commit e1b981d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 8df3b0a219967080d9dc4b604b5fecacb6967af0
refs/heads/master: 9ebed9d182e03d12d39915b72e4b960046bc4039
4 changes: 2 additions & 2 deletions trunk/crypto/lrw.c
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ static inline void inc(be128 *iv)
iv->a = cpu_to_be64(be64_to_cpu(iv->a) + 1);
}

static inline void round(struct sinfo *s, void *dst, const void *src)
static inline void lrw_round(struct sinfo *s, void *dst, const void *src)
{
be128_xor(dst, &s->t, src); /* PP <- T xor P */
s->fn(s->tfm, dst, dst); /* CC <- E(Key2,PP) */
Expand Down Expand Up @@ -160,7 +160,7 @@ static int crypt(struct blkcipher_desc *d,
inc(iv);

first:
round(&s, wdst, wsrc);
lrw_round(&s, wdst, wsrc);

wsrc += bs;
wdst += bs;
Expand Down

0 comments on commit e1b981d

Please sign in to comment.