Toggle navigation
Documentation
The friendly Operating System for the Internet of Things
Main Page
Related Pages
Supported Boards
Modules
Namespaces
Namespace List
Namespace Members
All
Functions
Variables
Enumerations
Data Structures
Data Structures
Class Hierarchy
Data Fields
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
w
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
Enumerator
Related Symbols
Files
File List
Globals
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Typedefs
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Enumerations
_
a
b
c
d
e
f
g
h
i
k
l
m
n
p
q
r
s
t
u
v
w
x
z
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
►
RIOT OS
•
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
Loading...
Searching...
No Matches
sha512_common.h
Go to the documentation of this file.
1
/*
2
* Copyright (C) 2023 TU Dresden
3
*
4
* This file is subject to the terms and conditions of the GNU Lesser
5
* General Public License v2.1. See the file LICENSE in the top level
6
* directory for more details.
7
*/
8
21
#ifndef HASHES_SHA512_COMMON_H
22
#define HASHES_SHA512_COMMON_H
23
24
#include <string.h>
25
#include <stdint.h>
26
27
#ifdef __cplusplus
28
extern
"C"
{
29
#endif
30
34
typedef
struct
{
36
uint64_t state[8];
38
uint64_t count[2];
40
unsigned
char
buf[128];
41
}
sha512_common_context_t
;
34
typedef
struct
{
…
};
42
48
void
sha512_common_pad
(
sha512_common_context_t
*ctx);
49
57
void
sha512_common_update
(
sha512_common_context_t
*ctx,
const
void
*data,
size_t
len);
58
67
void
sha512_common_final
(
sha512_common_context_t
*ctx,
void
*digest,
size_t
dig_len);
68
69
#ifdef __cplusplus
70
}
71
#endif
72
74
#endif
/* HASHES_SHA512_COMMON_H */
sha512_common_pad
void sha512_common_pad(sha512_common_context_t *ctx)
SHA-512 initialization.
sha512_common_update
void sha512_common_update(sha512_common_context_t *ctx, const void *data, size_t len)
Add bytes into the hash.
sha512_common_final
void sha512_common_final(sha512_common_context_t *ctx, void *digest, size_t dig_len)
SHA-512 finalization.
sha512_common_context_t
Structure to hold the SHA-512 context.
Definition
sha512_common.h:34
Generated on Thu Apr 3 2025 13:00:10 by
1.12.0