Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RIOT
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cm-projects
RIOT
Commits
c6be56ad
Commit
c6be56ad
authored
11 years ago
by
Christian Mehlis
Browse files
Options
Downloads
Plain Diff
Merge pull request #124 from mehlis/sha256
add the default wrapper for sha256
parents
2d8bb530
618cb30e
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
sys/crypto/sha256.c
+16
-0
16 additions, 0 deletions
sys/crypto/sha256.c
sys/include/sha256.h
+12
-0
12 additions, 0 deletions
sys/include/sha256.h
with
28 additions
and
0 deletions
sys/crypto/sha256.c
+
16
−
0
View file @
c6be56ad
...
@@ -228,3 +228,19 @@ void SHA256_Final(unsigned char digest[32], SHA256_CTX *ctx)
...
@@ -228,3 +228,19 @@ void SHA256_Final(unsigned char digest[32], SHA256_CTX *ctx)
/* Clear the context state */
/* Clear the context state */
memset
((
void
*
)
ctx
,
0
,
sizeof
(
*
ctx
));
memset
((
void
*
)
ctx
,
0
,
sizeof
(
*
ctx
));
}
}
unsigned
char
*
SHA256
(
const
unsigned
char
*
d
,
size_t
n
,
unsigned
char
*
md
)
{
SHA256_CTX
c
;
static
unsigned
char
m
[
SHA256_DIGEST_LENGTH
];
if
(
md
==
NULL
)
{
md
=
m
;
}
SHA256_Init
(
&
c
);
SHA256_Update
(
&
c
,
d
,
n
);
SHA256_Final
(
md
,
&
c
);
return
md
;
}
This diff is collapsed.
Click to expand it.
sys/include/sha256.h
+
12
−
0
View file @
c6be56ad
...
@@ -65,4 +65,16 @@ void SHA256_Update(SHA256_CTX *ctx, const void *in, size_t len);
...
@@ -65,4 +65,16 @@ void SHA256_Update(SHA256_CTX *ctx, const void *in, size_t len);
*/
*/
void
SHA256_Final
(
unsigned
char
digest
[
32
],
SHA256_CTX
*
ctx
);
void
SHA256_Final
(
unsigned
char
digest
[
32
],
SHA256_CTX
*
ctx
);
/**
* @brief A wrapper function to simplify the generation of a hash, this is
* usefull for generating sha256 for one buffer
*
* @param d pointer to the buffer to generate hash from
* @param n length of the buffer
* @param md optional pointer to an array for the result, length must be
* SHA256_DIGEST_LENGTH
* if md == NULL, one static buffer is used
*/
unsigned
char
*
SHA256
(
const
unsigned
char
*
d
,
size_t
n
,
unsigned
char
*
md
);
#endif
/* !_SHA256_H_ */
#endif
/* !_SHA256_H_ */
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment