Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
uPython-mirror
Commits
6b07a613
Commit
6b07a613
authored
Mar 19, 2015
by
Damien George
Browse files
extmod/crypto: Add static keyword where it should be.
parent
2e2e404f
Changes
1
Hide whitespace changes
Inline
Side-by-side
extmod/crypto-algorithms/sha256.c
View file @
6b07a613
...
...
@@ -41,7 +41,7 @@ static const WORD k[64] = {
};
/*********************** FUNCTION DEFINITIONS ***********************/
void
sha256_transform
(
SHA256_CTX
*
ctx
,
const
BYTE
data
[])
static
void
sha256_transform
(
SHA256_CTX
*
ctx
,
const
BYTE
data
[])
{
WORD
a
,
b
,
c
,
d
,
e
,
f
,
g
,
h
,
i
,
j
,
t1
,
t2
,
m
[
64
];
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment