Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 34218
b: refs/heads/master
c: cb17530
h: refs/heads/master
v: v3
  • Loading branch information
Adrian Bunk authored and Herbert Xu committed Sep 21, 2006
1 parent 7081e5c commit f4ffddb
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: 6c833275152b454d311f0e70b5e6bf028b4a2aaf
refs/heads/master: cb17530b0a4e01bd595a7ac437467a1a9833a15c
4 changes: 2 additions & 2 deletions trunk/drivers/crypto/padlock-sha.c
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ static inline void padlock_output_block(uint32_t *src,
*dst++ = swab32(*src++);
}

void padlock_do_sha1(const char *in, char *out, int count)
static void padlock_do_sha1(const char *in, char *out, int count)
{
/* We can't store directly to *out as it may be unaligned. */
/* BTW Don't reduce the buffer size below 128 Bytes!
Expand All @@ -133,7 +133,7 @@ void padlock_do_sha1(const char *in, char *out, int count)
padlock_output_block((uint32_t *)result, (uint32_t *)out, 5);
}

void padlock_do_sha256(const char *in, char *out, int count)
static void padlock_do_sha256(const char *in, char *out, int count)
{
/* We can't store directly to *out as it may be unaligned. */
/* BTW Don't reduce the buffer size below 128 Bytes!
Expand Down

0 comments on commit f4ffddb

Please sign in to comment.